EOS/docker-compose.yaml

25 lines
569 B
YAML
Raw Normal View History

2024-09-16 11:48:20 +02:00
---
networks:
default:
name: "eos"
2024-09-16 11:48:20 +02:00
services:
eos:
image: "akkudoktor/eos:${EOS_VERSION}"
read_only: true
2024-09-16 11:48:20 +02:00
build:
context: .
dockerfile: "Dockerfile"
2024-09-16 11:48:20 +02:00
args:
PYTHON_VERSION: "${PYTHON_VERSION}"
environment:
- EOS_CONFIG_DIR=config
- latitude=52.2
- longitude=13.4
- elecprice_provider=ElecPriceAkkudoktor
- elecprice_charges_kwh=0.21
- EOS_SERVER__EOSDASH_SESSKEY=s3cr3t
2024-09-17 09:02:35 +02:00
ports:
# Configure what ports to expose on host
- "${EOS_PORT}:8503"
- "${EOSDASH_PORT}:8504"