aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/docker-compose.yml
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-03-06 10:59:11 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-11-11 16:45:46 +0100
commite604efcb71ca3bbff701598969d055d688161985 (patch)
tree4daa9d677ee5c0da907499433275061f4c712556 /support/docker/production/docker-compose.yml
parent1a9b141d835cf3bfe9bdca67f881b520975f9058 (diff)
downloadPeerTube-e604efcb71ca3bbff701598969d055d688161985.tar.gz
PeerTube-e604efcb71ca3bbff701598969d055d688161985.tar.zst
PeerTube-e604efcb71ca3bbff701598969d055d688161985.zip
Do not expose containers by default in traefik
Diffstat (limited to 'support/docker/production/docker-compose.yml')
-rw-r--r--support/docker/production/docker-compose.yml10
1 files changed, 1 insertions, 9 deletions
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml
index 62be02467..51de964e8 100644
--- a/support/docker/production/docker-compose.yml
+++ b/support/docker/production/docker-compose.yml
@@ -68,26 +68,20 @@ services:
68 - redis 68 - redis
69 - postfix 69 - postfix
70 restart: "always" 70 restart: "always"
71 labels:
72 traefik.enable: "false"
73 71
74 postgres: 72 postgres:
75 image: postgres:10-alpine 73 image: postgres:12-alpine
76 env_file: 74 env_file:
77 - .env 75 - .env
78 volumes: 76 volumes:
79 - ./docker-volume/db:/var/lib/postgresql/data 77 - ./docker-volume/db:/var/lib/postgresql/data
80 restart: "always" 78 restart: "always"
81 labels:
82 traefik.enable: "false"
83 79
84 redis: 80 redis:
85 image: redis:5-alpine 81 image: redis:5-alpine
86 volumes: 82 volumes:
87 - ./docker-volume/redis:/data 83 - ./docker-volume/redis:/data
88 restart: "always" 84 restart: "always"
89 labels:
90 traefik.enable: "false"
91 85
92 postfix: 86 postfix:
93 image: mwader/postfix-relay 87 image: mwader/postfix-relay
@@ -95,8 +89,6 @@ services:
95 - .env 89 - .env
96 volumes: 90 volumes:
97 - ./docker-volume/opendkim/keys:/etc/opendkim/keys 91 - ./docker-volume/opendkim/keys:/etc/opendkim/keys
98 labels:
99 traefik.enable: "false"
100 restart: "always" 92 restart: "always"
101 93
102networks: 94networks: