Import some files and transform to working containers for:

* mysql
* lighttpd (with php and mysql)
* transmission
* sabnzbd
* sickbeard
* couchpotato
* headphones
* btsync
This commit is contained in:
2015-01-14 15:17:36 +00:00
parent ecb0bb0815
commit a307062d5b
81 changed files with 635 additions and 94 deletions

41
build/boot/headphones.sh Normal file
View File

@@ -0,0 +1,41 @@
#!/bin/bash
set -e
mkdir -p `dirname $HEADPHONES_CONFIG`
mkdir -p `dirname $HEADPHONES_DATA`
if [[ ! -e $HEADPHONES_CONFIG ]]; then
cat << EOF > $HEADPHONES_CONFIG
[General]
cache_dir = /host/var/lib/headphones
music_dir = /host/srv/headphones
destination_dir = /host/srv/headphones
preferred_bitrate = 192
auto_add_artists = 1
correct_metadata = 1
move_files = 1
rename_files = 1
folder_format = $Artist/$Album
file_format = $Artist - $Title
file_underscores = 0
cleanup_files = 1
add_album_art = 1
album_art_format = $Artist - $Album
nzb_downloader = 1
torrent_downloader = 1
download_dir = /host/srv/downloads
autowant_upcoming = 1
torrentblackhole_dir = ""
isohunt = 1
kat = 1
mininova = 1
piratebay = 1
download_torrent_dir = /host/srv/downloads
music_encoder = 1
encoder = ffmpeg
bitrate = 192
samplingfrequency = 44100
[SABnzbd]
sab_host = http://sabnzbd:8080/
[Transmission]
transmission_host = transmission:9091
EOF
fi