-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (33 loc) · 1.09 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
spotdl:
container_name: spotdl
image: spotdl/spotify-downloader:latest
command: web --host 0.0.0.0 --web-use-output-dir
environment:
# - PUID=1000
# - PGID=100
- HTTP_PORT=8800
volumes:
- /srv/dev-disk-by-uuid-9456ac49-ffdc-4dc8-a8d7-35c5b7c0e43d/Download:/music
ports:
- 8800:8800
restart: unless-stopped
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.spotdl.entrypoints=http"
- "traefik.http.routers.spotdl.rule=Host(`spot.bedart.com.pl`)"
- "traefik.http.middlewares.spotdl-https-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.spotdl-secure.entrypoints=https"
- "traefik.http.routers.spotdl-secure.rule=Host(`spot.bedart.com.pl`)"
- "traefik.http.routers.spotdl-secure.tls=true"
- "traefik.http.routers.spotdl-secure.service=spotdl"
- "traefik.http.services.spotdl.loadbalancer.server.port=8800"
- "traefik.docker.network=proxy"
networks:
proxy:
external: true
volumes:
spotdl:
external: true