A simple status page for my docker containers.
Go to file
Marco Andronaco 672f267e41 add healthcheck 2023-08-09 02:30:01 +02:00
docker_status add healthcheck 2023-08-09 02:30:01 +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 make dockerfile smarter 2023-08-09 02:14:57 +02:00
LICENSE initial commit 2023-08-09 01:56:22 +02:00
README.md update readme and config.example.json 2023-08-09 02:12:27 +02:00
config.example.json update readme and config.example.json 2023-08-09 02:12:27 +02:00
docker-compose.yaml add healthcheck 2023-08-09 02:30:01 +02:00
poetry.lock initial commit 2023-08-09 01:56:22 +02:00
pyproject.toml initial commit 2023-08-09 01:56:22 +02:00
requirements.txt initial commit 2023-08-09 01:56:22 +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.

Poetry

  1. Install dependencies: poetry install.
  2. Start the program:
    • Debug: poetry run flask --app docker_status run --port 1111 --debug.
    • Production: poetry run waitress-serve --host 0.0.0.0 --port 1111 docker_status:app

Docker

Just use docker-compose up -d.