31 lines
592 B
YAML
31 lines
592 B
YAML
# 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: {}
|