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

View File

@@ -0,0 +1,3 @@
automysqlbackup:
$(call script,$@)
$(call boot,02,$@)

View File

@@ -1,3 +1,3 @@
btsync:
cp $(BASE)/scripts/*_$@.sh build/scripts
cp $(BASE)/runit/$@ build/runit
$(call script,$@)
$(call runit,$@)

View File

@@ -0,0 +1,4 @@
couchpotato:
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

4
build/make/headphones.mk Normal file
View File

@@ -0,0 +1,4 @@
headphones:
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

View File

@@ -1,2 +1,4 @@
lighttpd-php: php lighttpd
$(call script_force,$@)
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

View File

@@ -1,3 +1,3 @@
lighttpd:
$(call script_force,$@)
$(call script,$@)
$(call runit,$@)

View File

@@ -1,3 +1,3 @@
mysql:
$(call script_force,$@)
$(call script,$@)
$(call runit,$@)

View File

@@ -1,2 +1,2 @@
php:
$(call script_force,$@)
$(call script,$@)

3
build/make/phpmyadmin.mk Normal file
View File

@@ -0,0 +1,3 @@
phpmyadmin: lighttpd-php
$(call script,$@)
$(call boot,02,$@)

4
build/make/sabnzbd.mk Normal file
View File

@@ -0,0 +1,4 @@
sabnzbd:
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

4
build/make/sickbeard.mk Normal file
View File

@@ -0,0 +1,4 @@
sickbeard: subliminal
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

2
build/make/subliminal.mk Normal file
View File

@@ -0,0 +1,2 @@
subliminal:
$(call script,$@)

2
build/make/test.mk Normal file
View File

@@ -0,0 +1,2 @@
test: php
$(call script,$@)

View File

@@ -0,0 +1,4 @@
transmission:
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)

3
build/make/webserver.mk Normal file
View File

@@ -0,0 +1,3 @@
webserver: phpmyadmin
$(call script,$@)
$(call boot,02,$@)