Files
Docker-Compose/Seerr/docker-compose-nfs.yaml
2026-03-13 22:19:51 -07:00

17 lines
315 B
YAML

services:
app:
image: seerr/seerr:latest
init: true
environment:
- LOG_LEVEL=debug
- TZ=${SEERR_TZ}
- PORT=${SEERR_PORT}
ports:
- ${SEERR_PORT}:5055
volumes:
- ${SEERR_VOLUME}:/app/config
restart: unless-stopped
volumes:
${SEERR_VOLUME}:
external: true