diff --git a/init-aria2.sh b/init-aria2.sh new file mode 100755 index 0000000..211a52a --- /dev/null +++ b/init-aria2.sh @@ -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 diff --git a/init-brook.sh b/init-brook.sh new file mode 100755 index 0000000..e9af535 --- /dev/null +++ b/init-brook.sh @@ -0,0 +1,4 @@ +docker run -d \ + -e "ARGS=server -l :6060 -p liukang" \ + -p 6060:6060/tcp -p 6060:6060/udp \ + chenhw2/brook diff --git a/init-mysql.sh b/init-mysql.sh new file mode 100755 index 0000000..09978ed --- /dev/null +++ b/init-mysql.sh @@ -0,0 +1 @@ +docker run --name mysql -e MYSQL_ROOT_PASSWORD=liukang951006 -v /mysql-data:/var/lib/mysql -p 3306:3306 -d mysql diff --git a/init-nextcloud.sh b/init-nextcloud.sh new file mode 100755 index 0000000..53799ce --- /dev/null +++ b/init-nextcloud.sh @@ -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 diff --git a/init-owncloud.sh b/init-owncloud.sh new file mode 100755 index 0000000..0bb3d5c --- /dev/null +++ b/init-owncloud.sh @@ -0,0 +1 @@ +docker run -d -p 80:80 -v /owncloud-data:/var/www/html --name owncloud owncloud:8.1 diff --git a/init-postgre.sh b/init-postgre.sh new file mode 100755 index 0000000..963da8f --- /dev/null +++ b/init-postgre.sh @@ -0,0 +1,2 @@ +docker run --name postgres -e POSTGRES_PASSWORD=liukang951006 -p 5432:5432 -v /postgre-data:/var/lib/postgresql/data -d postgres +