docker sh

This commit is contained in:
MaxKey
2023-02-06 14:37:25 +08:00
parent 67eea12943
commit 33c5720d19
5 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
echo "network create "
docker network create maxkey.top
mysql_version=8.0.32
#MySQL
docker pull mysql:$mysql_version
docker image tag mysql:$mysql_version maxkeytop/mysql
#maxkey
docker pull maxkeytop/maxkey:latest
#maxkey-mgt
docker pull maxkeytop/maxkey-mgt:latest
#maxkey-frontend
docker pull maxkeytop/maxkey-frontend:latest
#maxkey-mgt-frontend
docker pull maxkeytop/maxkey-mgt-frontend:latest
#maxkey-nginx proxy
cd docker-nginx
docker build -f Dockerfile -t maxkeytop/maxkey-nginx .
cd ..
echo "installed done."