commit 2370a2419bf6027ff146422c8eb879d365aebe0a Author: Beda Schmid Date: Thu Aug 6 17:49:54 2026 +0000 Initial commit diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..63abf8a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,28 @@ +services: + seerr: + mem_limit: 1g + memswap_limit: 1.5g + image: ghcr.io/seerr-team/seerr:latest + init: true + container_name: seerr + environment: + - LOG_LEVEL=debug + - TZ=Etc/UTC + restart: unless-stopped + # ports: +# - "5055:5055" + volumes: + - /srv/appdata/seerr/config:/app/config + healthcheck: + test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1 + start_period: 20s + timeout: 3s + interval: 15s + retries: 3 + networks: + npm_proxy: + ipv4_address: 192.168.97.15 + +networks: + npm_proxy: + external: true