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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
docker-compose.yml Normal file
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: {}