You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
733 B
Bash

# Headphones is an automated music downloader for NZB and Torrent, written in
# Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.
source ./.env
docker run -d \
--name=headphones \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 8181:8181 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/headphones/config:/config `# Configuration files.` \
-v ${BASEDIR:-/volume1/docker}/headphones/downloads:/downloads `# ISOs.` \
-v ${BASEDIR:-/volume1/docker}/headphones/music:/music `# Your music directory.` \
--restart unless-stopped \
ghcr.io/linuxserver/headphones