mirror of
https://github.com/pldubouilh/gossa
synced 2025-12-06 08:22:32 +01:00
Create docker-compose.yml
With Traefik and a few other options
This commit is contained in:
parent
c98556880f
commit
916c260529
1 changed files with 21 additions and 0 deletions
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal 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: {}
|
||||
Loading…
Reference in a new issue