laradock環境doker-compose操做

如下全部明命令須要在命令行模式下laradock文件夾下運行

構建nginxphp

docker-compose build nginx

不使用緩存構建nginxnginx

docker-compose build --no-cache nginx

開啓nginxdocker

docker-compose up -d nginx

中止nginx緩存

docker-compose stop nginx

中止全部正在運行的容器,但不刪除容器bash

docker-compose stop

中止,並刪除正在運行的容器php-fpm

docker-compose down

查看已存在或者正在運行的容器ui

docker-compose ps

進入nginx中,併到達bash命令交互界面命令行

docker-compose exec nginx bash

查看nginx的日誌debug

docker-compose logs nginx

持續查看nginx日誌,有日誌就輸出,沒日誌就等着日誌

docker-compose logs -f nginx

刪除全部容器

docker rm `docker ps -a -q

刪除全部鏡像

docker rmi `docker images -q

刪除docker-compose認爲全部不使用的鏡像

docker image prune

刪除全部已存在的鏡像

docker image prune --force --all

刪除全部已存在的鏡像 簡寫

docker image prune -f -a

刪除全部中止的容器

docker container prune

中止xDebug

php-fpm/xdebug stop

打開xDebug

php-fpm/xdebug start

查看狀態

php-fpm/xdebug status
相關文章
相關標籤/搜索