readeck
This commit is contained in:
@ -145,6 +145,18 @@ https://search.novemila.org {
|
||||
reverse_proxy localhost:3017
|
||||
}
|
||||
|
||||
# IMMICH
|
||||
|
||||
https://photo.novemila.org {
|
||||
reverse_proxy localhost:3018
|
||||
}
|
||||
|
||||
# READECK
|
||||
|
||||
https://readeck.novemila.org {
|
||||
reverse_proxy localhost:3019
|
||||
}
|
||||
|
||||
# MOLLY
|
||||
|
||||
https://molly.novemila.org {
|
||||
|
24
readeck/docker-compose.yml
Normal file
24
readeck/docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user