compose.yaml erneut hinzugefügt

This commit is contained in:
2026-03-23 16:02:15 +01:00
parent c7a890f917
commit c19bb06603
23 changed files with 906 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# 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
healthcheck:
test:
- CMD
- wget
- --spider
- -q
- http://localhost:7070
interval: 30s
timeout: 5s
retries: 3
start_period: 20s
networks: {}