Compare commits

...

2 Commits

Author SHA1 Message Date
borgal
73d4b94171 Initial Commit 2024-03-15 11:02:46 +01:00
borgal
1684f897e1 Initial Commit 2024-03-15 11:01:46 +01:00
2 changed files with 29 additions and 0 deletions

14
dockge/docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
dockge:
image: louislam/dockge
container_name: dockge
restart: unless-stopped
ports:
- 8002:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- /opt:/opt
environment:
- DOCKGE_STACKS_DIR=/opt

15
wallos/docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.0'
services:
wallos:
container_name: wallos
image: bellamy/wallos:latest
ports:
- "8282:80/tcp"
environment:
TZ: 'Europe/Berlin'
# Volumes store your data between container upgrades
volumes:
- './db:/var/www/html/db'
- './logos:/var/www/html/images/uploads/logos'
restart: unless-stopped