homeserver-iac/roles/containers/templates/docker-compose.yml.j2

48 lines
1.1 KiB
Plaintext
Raw Normal View History

# vim: ft=yaml
---
version: "3"
networks:
gitea:
driver: bridge
services:
{% if "gitea" in group_names %}
gitea:
container_name: gitea
image: gitea/gitea:latest
environment:
2023-09-02 18:20:46 -04:00
- USER_UID={{ user_gitea.uid }}
- USER_GID={{ user_gitea.group }}
- GITEA__service__DISABLE_REGISTRATION=true
- GITEA__server__DOMAIN={{ gitea_domain }}
- GITEA__server__SSH_DOMAIN={{ gitea_domain }}
ports:
- "3000:3000"
2023-09-03 20:09:56 -04:00
- "2498:22"
restart: unless-stopped
volumes:
- {{ dataroot }}/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- gitea
{% endif %}
{% if "syncthing" in group_names %}
syncthing:
network_mode: host
container_name: syncthing
image: syncthing/syncthing
environment:
- PUID={{ user_syncthing.uid }}
- PGID={{ user_syncthing.group }}
restart: unless-stopped
volumes:
- {{ vault_path }}/:/vault
- {{ archive_path }}/:/vault_a
- {{ syncthing_conf_dir }}/:/var/syncthing/config
{% endif %}