From a17167d6f5f5567f51b3a93c08c95605079f3700 Mon Sep 17 00:00:00 2001 From: sven Date: Fri, 30 Jan 2026 15:08:28 +0100 Subject: [PATCH] Erstes Aufsetzen --- evcc/compose.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 evcc/compose.yaml diff --git a/evcc/compose.yaml b/evcc/compose.yaml new file mode 100644 index 0000000..10fce5f --- /dev/null +++ b/evcc/compose.yaml @@ -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: {}