mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
17 lines
327 B
YAML
17 lines
327 B
YAML
services:
|
|
spotdl:
|
|
image: ${SPOTDL_IMAGE:-spotdl/spotify-downloader:latest}
|
|
restart: ${SPOTDL_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/spotdl/music:/music
|
|
ports:
|
|
- "${SPOTDL_PORT:-8800}:8800"
|
|
networks:
|
|
- proxy
|
|
command:
|
|
- web
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|