services: readeck: image: codeberg.org/readeck/readeck:latest container_name: readeck ports: - 8000:8000 environment: # Defines the application log level. Can be error, warning, 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 # The URL prefix of Readeck. - READECK_SERVER_PREFIX=/ # A list of hostnames allowed in HTTP requests. Required for reverse proxy configuration. - READECK_ALLOWED_HOSTS=readeck.example.com # Use the 'X-Forwarded-' headers. Required for reverse proxy configuration. - READECK_USE_X_FORWARDED=true volumes: - ./readeck:/readeck restart: unless-stopped healthcheck: test: ["CMD", "/bin/readeck", "healthcheck", "-config", "config.toml"] interval: 30s timeout: 2s retries: 3