mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-16 10:30:47 +01:00
Merge pull request #499 from ChristianLempa/416-add-dockge-to-boilerplates
Add dockge compose template
This commit is contained in:
commit
6f43f84846
31
docker-compose/dockge/compose.yaml
Normal file
31
docker-compose/dockge/compose.yaml
Normal file
@ -0,0 +1,31 @@
|
||||
---
|
||||
services:
|
||||
dockge:
|
||||
container_name: dockge
|
||||
image: louislam/dockge:1.3.3
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- dockge-data:/app/data
|
||||
- /your-stacks-path:/your-stacks-path # <-- Change this to your stacks path
|
||||
environment:
|
||||
- DOCKGE_STACKS_DIR=/your-stacks-path # <-- Change this to your stacks path
|
||||
# --> (Optional) When using traefik
|
||||
# labels:
|
||||
# - traefik.enable=true
|
||||
# - traefik.http.routers.dockge-http.entrypoints=web
|
||||
# - traefik.http.routers.dockge-http.rule=Host(`your-dockge-fqdn`) # <-- Change this to your FQDN
|
||||
# - traefik.http.routers.dockge-https.entrypoints=websecure
|
||||
# - traefik.http.routers.dockge-https.rule=Host(`your-dockge-fqdn`) # <-- Change this to your FQDN
|
||||
# - traefik.http.routers.dockge-https.tls=true
|
||||
# - traefik.http.routers.dockge-https.tls.certresolver=cloudflare
|
||||
# networks:
|
||||
# - frontend
|
||||
# <--
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
dockge-data:
|
||||
# --> (Optional) When using traefik
|
||||
# networks:
|
||||
# frontend:
|
||||
# external: true
|
||||
# <--
|
Loading…
Reference in New Issue
Block a user