docker-status
A simple status page for my Docker containers.
Config
First of all, copy config.json.example
into config.json
and fill it out accordingly.
Docker
Just use docker-compose up --build --detach
.
Poetry (debug)
- Install dependencies:
poetry install
; - Start the server:
poetry run flask --app docker_status run --port 1111 --debug
.
Poetry (production)
- Install dependencies:
poetry install --with prod
; - Start the server:
poetry run python docker_status
.