Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpmb82/sonarr-docker
https://github.com/bpmb82/sonarr-docker
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpmb82/sonarr-docker
- Owner: bpmb82
- Created: 2020-12-11T19:00:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-21T19:41:33.000Z (over 1 year ago)
- Last Synced: 2024-06-28T06:39:32.885Z (5 months ago)
- Language: Shell
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sonarr-docker
Sonarr image, updated weekly, running the latest v3 version of Sonarr.
Automatically grabs the API key to do a healthcheck
## Environment
| Environment variable | Description |
| --- | --- |
| `ENABLE_BACKUP` | Set to `1` to enable daily backups of the database. Last 30 days are kept. |## docker-compose
```
version: '3.3'services:
sonarr:
image: bpmbee/docker-sonarr:latest
container_name: sonarr
environment:
- TZ=Europe/Amsterdam
- ENABLE_BACKUP=1 # Optional
volumes:
- /local_path/config:/config/
- /local_path/backups:/backups
- /path_to_your_tv_dir:/tv
- /path_to_your_completed_downloads_dir:/downloads
ports:
- 8989:8989
restart: unless-stopped
```