docker laravel 的自动部署
docker部署在jenkins上:
cd /www/wwwroot/laravel-docker
git pull
if [ $? -ne 0 ]; then
echo “============================git pull failed===========[……]
docker部署在jenkins上:
cd /www/wwwroot/laravel-docker
git pull
if [ $? -ne 0 ]; then
echo “============================git pull failed===========[……]
查看docker镜像:
docker images
运行镜像:
docker container run hello-world
# 列出本机正在运行的容器
$ docker container ls
# 列出本机所有容器,包括终止运行的容器
$ docker container ls[……]