1
0

Networks: create internal docker network for proxy server

Prepare to use caddy in docker
This commit is contained in:
2025-05-06 11:11:48 +03:00
parent 527067146f
commit adde4e32c1
15 changed files with 207 additions and 184 deletions

View File

@ -12,6 +12,8 @@ services:
- {{ backups_dir }}:/backups
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- "{{ web_proxy_network }}"
environment:
- "USER_UID=${USER_UID}"
- "USER_GID=${USER_GID}"
@ -25,3 +27,7 @@ services:
- "GITEA__mailer__USER={{ postbox_user }}"
- "GITEA__mailer__PASSWD={{ postbox_pass }}"
- "GITEA__mailer__FROM=gitea@vakhrushev.me"
networks:
{{ web_proxy_network }}:
external: true