Compare commits

...

2 Commits

Author SHA1 Message Date
sven afa0faa9d4 Hochfahren, damit Clients online bleiben 2026-01-30 15:08:55 +01:00
sven a17167d6f5 Erstes Aufsetzen 2026-01-30 15:08:28 +01:00
2 changed files with 43 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# docker-compose.yml
services:
evcc:
deploy:
resources:
limits:
memory: 256M
labels:
- com.hanold.environment=production
- wud.watch=true
image: evcc/evcc:latest
container_name: evcc
ports:
- 9070:7070
volumes:
# - ./evcc.yaml:/etc/evcc.yaml
- ./data/:/root/.evcc
restart: unless-stopped
networks: {}
+24
View File
@@ -0,0 +1,24 @@
services:
uptime-kuma:
image: louislam/uptime-kuma
container_name: uptime-kuma
labels:
- wud.watch=true
- com.hanold.environment=production
deploy:
resources:
limits:
memory: 256M
volumes:
- ./data:/app/data
ports:
- 9011:3001
restart: unless-stopped
environment:
UPTIME_KUMA_DB_TYPE: mariadb
UPTIME_KUMA_DB_HOSTNAME: 192.168.178.170
UPTIME_KUMA_DB_PORT: 3306
UPTIME_KUMA_DB_USERNAME: uptimekuma
UPTIME_KUMA_DB_PASSWORD: dbpass
UPTIME_KUMA_DB_NAME: uptimekuma
networks: {}