This commit is contained in:
ddv12138 2018-07-08 16:08:34 +08:00
parent 582b2bbb63
commit a2c86731ce
6 changed files with 26 additions and 0 deletions

9
init-aria2.sh Executable file
View File

@ -0,0 +1,9 @@
docker run -d \
--name aria2-with-webui \
-p 6800:6800 \
-p 6880:80 \
-p 6888:8080 \
-v /root/aria2/aria2-download:/data \
-v /root/aria2/:/conf \
-e SECRET=liukang \
xujinkai/aria2-with-webui

4
init-brook.sh Executable file
View File

@ -0,0 +1,4 @@
docker run -d \
-e "ARGS=server -l :6060 -p liukang" \
-p 6060:6060/tcp -p 6060:6060/udp \
chenhw2/brook

1
init-mysql.sh Executable file
View File

@ -0,0 +1 @@
docker run --name mysql -e MYSQL_ROOT_PASSWORD=liukang951006 -v /mysql-data:/var/lib/mysql -p 3306:3306 -d mysql

9
init-nextcloud.sh Executable file
View File

@ -0,0 +1,9 @@
docker run -d --name nextcloud\
-v /nextcloud-data:/var/www/html\
-e POSTGRES_HOST="ddvudo.tk"\
-e POSTGRES_DB="nextcloud"\
-e POSTGRES_USER="postgres"\
-e POSTGRES_PASSWORD="liukang951006"\
-p 80:80\
--link postgres:postgres\
nextcloud

1
init-owncloud.sh Executable file
View File

@ -0,0 +1 @@
docker run -d -p 80:80 -v /owncloud-data:/var/www/html --name owncloud owncloud:8.1

2
init-postgre.sh Executable file
View File

@ -0,0 +1,2 @@
docker run --name postgres -e POSTGRES_PASSWORD=liukang951006 -p 5432:5432 -v /postgre-data:/var/lib/postgresql/data -d postgres