2016-10-24 16:03:03 +02:00
|
|
|
version: '2'
|
2016-07-16 16:01:29 +02:00
|
|
|
|
2016-10-24 16:03:03 +02:00
|
|
|
services:
|
|
|
|
|
2024-09-15 17:01:50 +02:00
|
|
|
snappass:
|
|
|
|
build: .
|
|
|
|
#image: pinterest/snappass
|
|
|
|
#ports:
|
|
|
|
# - "5000:5000"
|
|
|
|
stop_signal: SIGINT
|
|
|
|
environment:
|
|
|
|
- REDIS_HOST=redis
|
2024-09-16 14:00:18 +02:00
|
|
|
- NO_SSL=false
|
2024-09-16 16:40:38 +02:00
|
|
|
- SECRET_KEY=${SECRET_KEY}
|
2024-09-15 17:01:50 +02:00
|
|
|
- VIRTUAL_HOST=share.brothertec.eu
|
|
|
|
- VIRTUAL_PORT=5000
|
|
|
|
- LETSENCRYPT_HOST=share.brothertec.eu
|
|
|
|
- LETSENCRYPT_EMAIL=admin@brothertec.eu
|
|
|
|
|
|
|
|
restart: unless-stopped
|
|
|
|
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
|