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