edit docker compose config
This commit is contained in:
parent
86e7e2e220
commit
f7a7c4a375
1 changed files with 39 additions and 13 deletions
|
@ -2,17 +2,43 @@ version: '2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
snappass:
|
snappass:
|
||||||
build: .
|
build: .
|
||||||
image: pinterest/snappass
|
#image: pinterest/snappass
|
||||||
ports:
|
#ports:
|
||||||
- "5000:5000"
|
# - "5000:5000"
|
||||||
stop_signal: SIGINT
|
stop_signal: SIGINT
|
||||||
environment:
|
environment:
|
||||||
- REDIS_HOST=redis
|
- REDIS_HOST=redis
|
||||||
- NO_SSL=True
|
- NO_SSL=True
|
||||||
depends_on:
|
- VIRTUAL_HOST=share.brothertec.eu
|
||||||
- redis
|
- VIRTUAL_PORT=5000
|
||||||
|
- LETSENCRYPT_HOST=share.brothertec.eu
|
||||||
|
- LETSENCRYPT_EMAIL=admin@brothertec.eu
|
||||||
|
|
||||||
redis:
|
restart: unless-stopped
|
||||||
image: "redis:latest"
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.enable=false"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
- proxy
|
||||||
|
- edge-tier
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: "redis:latest"
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
name: nginx-proxy
|
||||||
|
external: true
|
||||||
|
edge-tier:
|
||||||
|
name: edge
|
||||||
|
external: true
|
||||||
|
|
Loading…
Reference in a new issue