mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-04-17 07:55:15 +00:00
- Added recommended settings for the Pylance and Pyright extensions - Enabled pytest and debugging support in configuration - Reformatted code with Prettier --------- Co-authored-by: Chris <git@nootch.de>
23 lines
460 B
YAML
23 lines
460 B
YAML
---
|
|
networks:
|
|
eos:
|
|
name: "eos"
|
|
services:
|
|
eos:
|
|
image: "akkudoktor/eos:${EOS_VERSION}"
|
|
read_only: true
|
|
build:
|
|
context: .
|
|
dockerfile: "Dockerfile"
|
|
args:
|
|
PYTHON_VERSION: "${PYTHON_VERSION}"
|
|
init: true
|
|
environment:
|
|
FLASK_RUN_PORT: "${EOS_PORT}"
|
|
networks:
|
|
- "eos"
|
|
volumes:
|
|
- ./src/akkudoktoreos/config.py:/opt/eos/akkudoktoreos/config.py:ro
|
|
ports:
|
|
- "${EOS_PORT}:${EOS_PORT}"
|