Compare commits

..
1 Commits
Author SHA1 Message Date
smileBeda 742623da5f Reset history to current sanitized state 2026-08-06 17:54:14 +00:00
3 changed files with 69 additions and 1 deletions
+13
View File
@@ -12,3 +12,16 @@
# Built Visual Studio Code Extensions # Built Visual Studio Code Extensions
*.vsix *.vsix
*.swp
.DS_Store
# BEGIN reset-history environment exclusions
.env
.env.*
*.env
*.env.*
!.env.example
!.env.*.example
!*.env.example
!*.env.*.example
# END reset-history environment exclusions
+28 -1
View File
@@ -1,2 +1,29 @@
# seerr # Seerr
Seerr manages media requests and connects users with supported media servers and automation services.
## Deployment layout
- **Compose:** `/srv/docker/seerr/docker-compose.yml`
- **Static configuration/source:** no additional mounted static configuration
- **Non-secret environment:** log level `debug` and timezone `Etc/UTC` are declared inline in Compose
- **Secrets:** no separately mounted secret file; integration credentials and tokens are stored inside protected
application-managed settings
- **NVMe application state:** `/srv/appdata/seerr/config`
- **Bulk HDD data:** none
- **Other mounts:** none
Secrets are never committed to this repository. Seerr stores confidential
settings, integration credentials, and tokens inside its protected application
state; the complete state directory and its backups must be treated as
sensitive.
## Dependencies and recovery
- **Networks/dependencies:** Seerr uses the external `npm_proxy` network at `192.168.97.15`; media-server,
Radarr, and Sonarr integrations are application-level dependencies stored in protected state
- **Back up:** `/srv/appdata/seerr/config`, including settings, database, users, request history, and
integration configuration
- **Re-creatable:** the Seerr container image; generated logs and caches within application state are disposable
but are not mounted separately
+28
View File
@@ -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