A simple status page for my docker containers.
Go to file
Marco Andronaco fc2d8ecb92 switch to bjoern 2023-08-09 12:02:01 +02:00
docker_status switch to bjoern 2023-08-09 12:02: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 switch to bjoern 2023-08-09 12:02:01 +02:00
LICENSE initial commit 2023-08-09 01:56:22 +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 switch to bjoern 2023-08-09 12:02:01 +02:00
poetry.lock switch to bjoern 2023-08-09 12:02:01 +02:00
pyproject.toml switch to bjoern 2023-08-09 12:02:01 +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.