A simple status page for my docker containers.
Go to file
Marco Andronaco 9024e8adfe fix license 2023-08-17 02:44:39 +02:00
docker_status back to waitress 2023-08-10 02:04:19 +02:00
tests initial commit 2023-08-09 01:56:22 +02:00
.dockerignore add healthcheck 2023-08-09 02:30:01 +02:00
.gitignore initial commit 2023-08-09 01:56:22 +02:00
Dockerfile back to waitress 2023-08-10 02:04:19 +02:00
LICENSE fix license 2023-08-17 02:44:39 +02:00
README.md switch to bjoern 2023-08-09 12:02:01 +02:00
config.example.json update readme and config.example.json 2023-08-09 02:12:27 +02:00
docker-compose.yaml remove healthcheck 2023-08-09 13:59:23 +02:00
poetry.lock back to waitress 2023-08-10 02:04:19 +02:00
pyproject.toml back to waitress 2023-08-10 02:04:19 +02:00
requirements.txt switch to bjoern 2023-08-09 12:02:01 +02:00

README.md

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)

  1. Install dependencies: poetry install;
  2. Start the server: poetry run flask --app docker_status run --port 1111 --debug.

Poetry (production)

  1. Install dependencies: poetry install --with prod;
  2. Start the server: poetry run python docker_status.