24 lines
479 B
YAML
Raw Permalink Normal View History

2025-02-19 13:41:45 -06:00
services:
redlib:
image: quay.io/redlib/redlib:latest
restart: always
container_name: "redlib"
ports:
- "127.0.0.1:10405:8080"
user: nobody
read_only: true
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
env_file: .env
networks:
- redlib
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:8080/settings"]
interval: 5m
timeout: 3s
networks:
redlib: