labeu
This commit is contained in:
parent
7c5b9d3590
commit
80dab785b7
|
|
@ -2,7 +2,7 @@ version: "3.8"
|
|||
|
||||
services:
|
||||
|
||||
postgres:
|
||||
postgres_labeu:
|
||||
image: postgres:13-alpine
|
||||
networks:
|
||||
- frontend_labeu
|
||||
|
|
@ -12,7 +12,7 @@ services:
|
|||
- ./docker-volume/db:/var/lib/postgresql/data
|
||||
restart: "always"
|
||||
|
||||
redis:
|
||||
redis_labeu:
|
||||
networks:
|
||||
- frontend_labeu
|
||||
image: redis:6-alpine
|
||||
|
|
@ -21,26 +21,26 @@ services:
|
|||
restart: "always"
|
||||
|
||||
|
||||
peertube:
|
||||
peertube_labeu:
|
||||
image: chocobozzz/peertube:production-buster
|
||||
networks:
|
||||
- frontend_labeu
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
ports:
|
||||
- "1935:1935"
|
||||
- "127.0.0.1:3001:9000"
|
||||
# ports:
|
||||
# - "1935:1935"
|
||||
# - "127.0.0.1:3001:9000"
|
||||
volumes:
|
||||
# - ./dist:/app/client/dist2
|
||||
- ./dist:/app/client/dist2
|
||||
- ./docker-volume/data:/data
|
||||
- ./docker-volume/config:/config
|
||||
# links:
|
||||
# - postgres:postgres
|
||||
# - redis:redis
|
||||
links:
|
||||
- postgres_labeu:postgres
|
||||
- redis_labeu:redis
|
||||
depends_on:
|
||||
- postgres
|
||||
- redis
|
||||
- postgres_labeu
|
||||
- redis_labeu
|
||||
restart: "always"
|
||||
|
||||
labels:
|
||||
|
|
|
|||
Loading…
Reference in New Issue