fix: docker部署及脚本备份。

This commit is contained in:
tianyongbao
2024-05-13 17:57:56 +08:00
parent 7fee1a1045
commit 94209b6fb9
21 changed files with 300 additions and 0 deletions

8
docker/invest/buildUi.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
docker rm -f nginx
docker rmi nginx:1.0.0
cd /mnt/data/invest/nginx
docker build -t nginx:1.0.0 .
docker run -di --name nginx -p 81:80 nginx:1.0.0