29 lines
626 B
YAML
29 lines
626 B
YAML
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
|