#docker config location
1 messages · Page 1 of 1 (latest)
Please continue adding more information into this thread.
You should include the following information:
Eg. 4.0.0
Eg. Windows 22H2
Please include Spotify links.
Only send these if they are relevant.
To send pasted error messages use three backticks (```)
Here's info on how to use code blocks.
@near wharf
I figured it out, I think. Or rather a workaround. By sending commands through to the docker-container, I can bypass the whole configfile all together. My docker-compose block looks like this now, and it seems to work fine:
spotdl: container_name: spotdl image: spotdl/spotify-downloader environment: - PUID=1000 - PGID=1000 - TZ=Europe/Oslo ports: - 8899:8899 volumes: - /path/to/my/music/folder:/music command: web --host 0.0.0.0 --port 8899 --keep-alive --client-id <my id> --client-secret <my secret> --bitrate disable --format flac --cookie-file <my cookie-file> restart: unless-stopped labels: - "traefik.enable=true" - "traefik.http.routers.spotdl.rule=Host(<my domain name>)" - "traefik.http.routers.spotdl.entrypoints=websecure" - "traefik.http.routers.spotdl.tls=true" - "traefik.http.routers.spotdl.tls.certresolver=letsencrypt" - "traefik.http.services.spotdl.loadbalancer.server.scheme=http" - "traefik.http.services.spotdl.loadbalancer.server.port=8899" - "traefik.http.routers.spotdl.middlewares=authelia@file"