博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker-compose
阅读量:6458 次
发布时间:2019-06-23

本文共 2389 字,大约阅读时间需要 7 分钟。

hot3.png

  • 常用选项
build               Build or rebuild servicesbundle              Generate a Docker bundle from the Compose fileconfig              Validate and view the Compose filecreate              Create servicesdown                Stop and remove containers, networks, images, and volumesevents              Receive real time events from containersexec                Execute a command in a running containerhelp                Get help on a commandimages              List imageskill                Kill containerslogs                View output from containerspause               Pause servicesport                Print the public port for a port bindingps                  List containerspull                Pull service imagespush                Push service imagesrestart             Restart servicesrm                  Remove stopped containersrun                 Run a one-off commandscale               Set number of containers for a servicestart               Start servicesstop                Stop servicestop                 Display the running processesunpause             Unpause servicesup                  Create and start containersversion             Show the Docker-Compose version information例子:docker-compose up -d nginx                     构建建启动nignx容器docker-compose exec nginx bash            登录到nginx容器中docker-compose down                              删除所有nginx容器,镜像docker-compose ps                                   显示所有容器docker-compose restart nginx                   重新启动nginx容器docker-compose run --no-deps --rm php-fpm php -v  在php-fpm中不启动关联容器,并容器执行php -v 执行完成后删除容器docker-compose build nginx                     构建镜像docker-compose build --no-cache nginx   不带缓存的构建docker-compose logs  nginx                     查看nginx的日志docker-compose logs -f nginx                   查看nginx的实时日志docker-compose config  -q                        验证(docker-compose.yml)文件配置,当配置正确时,不输出任何内容,当文件配置错误,输出错误信息。 docker-compose events --json nginx       以json的形式输出nginx的docker日志docker-compose pause nginx                 暂停nignx容器docker-compose unpause nginx             恢复ningx容器docker-compose rm nginx                       删除容器(删除前必须关闭容器)docker-compose stop nginx                    停止nignx容器docker-compose start nginx                    启动nignx容器
  • 强制重建
docker-compose up -d --force-recreate

参考网址:https://www.cnblogs.com/moxiaoan/p/9299404.html

转载于:https://my.oschina.net/colin86/blog/3025145

你可能感兴趣的文章
用javascript验证哥德巴赫猜想
查看>>
Shell编程-环境变量配置文件
查看>>
[Unity3d]DrawCall优化手记
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
【转】正则基础之——神奇的转义
查看>>
团队项目测试报告与用户反馈
查看>>
对软件工程课程的期望
查看>>
Mysql中文字符串提取datetime
查看>>
IOS 与ANDROID框架及应用开发模式对比一
查看>>
由中序遍历和后序遍历求前序遍历
查看>>
我学习参考的网址
查看>>
easyui的combotree以及tree,c#后台异步加载的详细介绍
查看>>
1、串(字符串)以及串的模式匹配算法
查看>>
[Processing]点到线段的最小距离
查看>>
考研随笔2
查看>>
乱码的情况
查看>>