From 93ff4f2d1a7786dc2d7d978edcdfde83cdcd66b0 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 31 Jan 2026 05:33:15 +0000 Subject: [PATCH] Add Random_Containers/readeck/compose.yaml --- Random_Containers/readeck/compose.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Random_Containers/readeck/compose.yaml diff --git a/Random_Containers/readeck/compose.yaml b/Random_Containers/readeck/compose.yaml new file mode 100644 index 0000000..8846e1f --- /dev/null +++ b/Random_Containers/readeck/compose.yaml @@ -0,0 +1,25 @@ +services: + app: + image: codeberg.org/readeck/readeck:latest + container_name: readeck + ports: + - 5015:8000 + environment: + # Defines the application log level. Can be error, warn, info, debug. + READECK_LOG_LEVEL: info + # The IP address on which Readeck listens. + READECK_SERVER_HOST: "0.0.0.0" + # The TCP port on which Readeck listens. Update container port above to match (right of colon). + READECK_SERVER_PORT: 8000 + # Easier to read log format + READECK_LOG_FORMAT: text + # Optional, the URL prefix of Readeck. + # READECK_SERVER_PREFIX: "/" + volumes: + - /srv/docker/readneck/readeck-data:/readeck + restart: unless-stopped + healthcheck: + test: ["CMD", "/bin/readeck", "healthcheck", "-config", "config.toml"] + interval: 30s + timeout: 2s + retries: 3 \ No newline at end of file