Files
jarri-spooty/docs/docker.md
T
raiper34 e5af53483a refactor(backend): queue system presented
queue system is presented to be more scalable app and reliable download system

BREAKING CHANGE: redis is added and required now

close #5
2025-01-26 22:34:04 +01:00

26 lines
628 B
Markdown

# Docker
Recommended and the easiest way how to start to use of Spooty is using docker.
Just run docker command or use docker compose configuration.
### Docker command
```shell
docker run -d -p 3000:3000 -v /path/to/downloads:/spooty/backend/downloads raiper34/spooty:latest
```
### Docker compose
```yaml
services:
spooty:
image: raiper34/spooty:latest
container_name: spooty
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- /path/to/downloads:/spooty/backend/downloads
```
### Environment variables
For detailed configuration, see available [Environment variables](variables.md).