initial commit with redbot and vaultwarden migrated

This commit is contained in:
Vilmos Zsombor TANCZOS 2025-05-04 23:49:10 +02:00
commit 15c1b9c2ea
18 changed files with 267 additions and 0 deletions

View file

@ -0,0 +1,27 @@
services:
{{ service_name }}:
container_name: {{ service_name }}
image: {{ docker_image }}{% if docker_image_version %}:{{ docker_image_version }}{% endif %}
{% if use_docker_user %}
user: "{{ getent_passwd[service_user].1 }}:{{ getent_passwd[service_user].2 }}"
{% endif %}
{% if docker_volumes %}
volumes:
{% for volume in docker_volumes %}
- {{ volume }}
{% endfor %}
{% endif %}
{% if docker_env %}
environment:
{% for key, value in docker_env.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% endif %}
{% if docker_ports %}
ports:
{% for port in docker_ports %}
- "{{ port }}"
{% endfor %}
{% endif %}
restart: unless-stopped