aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'support/docker/production/docker-compose.yml')
-rw-r--r--support/docker/production/docker-compose.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml
index 5b8f5700a..220c19fba 100644
--- a/support/docker/production/docker-compose.yml
+++ b/support/docker/production/docker-compose.yml
@@ -21,6 +21,8 @@ services:
21 # context: . 21 # context: .
22 # dockerfile: ./support/docker/production/Dockerfile.stretch 22 # dockerfile: ./support/docker/production/Dockerfile.stretch
23 image: chocobozzz/peertube:production-stretch 23 image: chocobozzz/peertube:production-stretch
24 env_file:
25 - .env
24 # Traefik labels are suggested as an example for people using Traefik, 26 # Traefik labels are suggested as an example for people using Traefik,
25 # remove them if you are using another reverse proxy. 27 # remove them if you are using another reverse proxy.
26 labels: 28 labels:
@@ -41,8 +43,8 @@ services:
41 postgres: 43 postgres:
42 image: postgres:10-alpine 44 image: postgres:10-alpine
43 environment: 45 environment:
44 POSTGRES_USER: ${DB_USERNAME} 46 POSTGRES_USER: ${PEERTUBE_DB_USERNAME}
45 POSTGRES_PASSWORD: ${DB_PASSWORD} 47 POSTGRES_PASSWORD: ${PEERTUBE_DB_PASSWORD}
46 POSTGRES_DB: peertube 48 POSTGRES_DB: peertube
47 volumes: 49 volumes:
48 - ./docker-volume/db:/var/lib/postgresql/data 50 - ./docker-volume/db:/var/lib/postgresql/data