This commit is contained in:
dado
2025-05-31 18:05:26 +02:00
parent 2e458e0946
commit 7d593bcf0f
2 changed files with 36 additions and 0 deletions

View File

@ -145,6 +145,18 @@ https://search.novemila.org {
reverse_proxy localhost:3017 reverse_proxy localhost:3017
} }
# IMMICH
https://photo.novemila.org {
reverse_proxy localhost:3018
}
# READECK
https://readeck.novemila.org {
reverse_proxy localhost:3019
}
# MOLLY # MOLLY
https://molly.novemila.org { https://molly.novemila.org {

View File

@ -0,0 +1,24 @@
volumes:
readeck-data:
services:
app:
image: codeberg.org/readeck/readeck:latest
container_name: readeck
mem_limit: 512m
cpus: 0.2 # al max 20% cpu
ports:
- 127.0.0.1:3019:8000
environment:
# Defines the application log level. Can be error, warn, info, debug.
- READECK_LOG_LEVEL=info
# Optional, a list of hostnames allowed in HTTP requests.
- READECK_ALLOWED_HOSTS=readeck.novemila.org
volumes:
- readeck-data:/readeck
restart: unless-stopped
healthcheck:
test: ["CMD", "/bin/readeck", "healthcheck", "-config", "config.toml"]
interval: 30s
timeout: 2s
retries: 3