Create docker-compose.yml

With Traefik and a few other options
This commit is contained in:
Kebert Xela
2019-04-30 10:40:28 -07:00
committed by GitHub
parent c98556880f
commit 916c260529
+21
View File
@@ -0,0 +1,21 @@
version: '2'
services:
gossa-server:
# build: .
image: pldubouilh/gossa:v0.0.6
container_name: gossa
restart: always
ports:
- 8001:8001
volumes:
# - '${STORAGE}/gossa:/shared'
- gossa-server:/shared
# labels:
# - "traefik.enable=true"
# - "traefik.port=8001"
# - "traefik.backend=gossa"
# - "traefik.frontend.rule=Host:${GOSSA}.${DOMAIN}"
volumes:
gossa-server: {}