added dockge

This commit is contained in:
dominikhoebert 2024-07-30 09:56:07 +02:00
parent 83c6cf98ad
commit b2b9a66eba
2 changed files with 25 additions and 0 deletions

2
.gitignore vendored
View File

@ -25,3 +25,5 @@ mariadb/dbgate-data/
authentik/certs/ authentik/certs/
authentik/custom-templates/ authentik/custom-templates/
authentik/media/ authentik/media/
dockge/data/
dockge/stacks/

23
dockge/compose.yml Normal file
View File

@ -0,0 +1,23 @@
# https://github.com/louislam/dockge
# A fancy, easy-to-use and reactive self-hosted docker compose.yaml stack-oriented manager.
name: dockge
services:
dockge:
image: louislam/dockge:1
container_name: dockge
ports:
- 5001:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
# Stacks Directory
# ⚠️ READ IT CAREFULLY. If you did it wrong, your data could end up writing into a WRONG PATH.
# ⚠️ 1. FULL path only. No relative path (MUST)
# ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST)
- ./stacks:/opt/stacks
environment:
# Tell Dockge where to find the stacks
- DOCKGE_STACKS_DIR=/opt/stacks