标签:remove bin processes format rdp 服务 环境变量 test bind
Commands: build Build or rebuild services bundle Generate a Docker bundle from the Compose file config Validate and view the compose file create Create services down Stop and remove containers, networks, images, and volumes events Receive real time events from containers exec Execute a command in a running container help Get help on a command kill Kill containers logs View output from containers pause Pause services port Print the public port for a port binding ps List containers pull Pull service images push Push service images restart Restart services rm Remove stopped containers run Run a one-off command scale Set number of containers for a service start Start services stop Stop services top Display the running processes unpause Unpause services up Create and start containers version Show the Docker-Compose version information
解释一下
build 构建或重建服务 help 命令帮助 kill 杀掉容器 logs 显示容器的输出内容 port 打印绑定的开放端口 ps 显示容器 pull 拉取服务镜像 restart 重启服务 rm 删除停止的容器 run 运行一个一次性命令 scale 设置服务的容器数目 start 开启服务 stop 停止服务 up 创建并启动容器
先看看我自己写的一个 docker-compose.yml
version: ‘2‘ services: nginx: image: bitnami/nginx:latest ports: - ‘80:80‘ - ‘1443:443‘ volumes: - /root/wp_yunlan/nginx/:/bitnami/nginx/ mariadb: image: bitnami/mariadb:latest volumes: - /root/wp_yunlan/mariadb:/bitnami/mariadb wordpress: image: bitnami/wordpress:latest depends_on: - mariadb - nginx environment: - WORDPRESS_USERNAME=neptunemoon #这个账户你是自己设定的 - WORDPRESS_PASSWORD=123123 #这个密码是你自己设定的 ports: - ‘8080:80‘ - ‘8081:443‘ volumes: - /root/wp_yunlan/wordpress:/bitnami/wordpress - /root/wp_yunlan/apache:/bitnami/apache - /root/wp_yunlan/php:/bitnami/php
nginx 和 mariadb,wordpress 是要启动的三个服务
顺序不是重要的,我们看见wordpress中有个 depends_on:
的属性
代表wordpress 依赖于
- mariadb
- nginx
两个服务, 所以他们两个会先启动
就是你的 docker 镜像
这个是在好理解不过的了。
不过这和我们程序语言设计层面的还是不一样的,这个是容器层面的环境变量。
如果我们写程序做一些逻辑判断的时候,肯定会使用
比如我们判断现在的编译器,我们会使用#if __GNUC__
或者 #if _MSC_VER
相应的,我们的容器里面肯定也有这样的逻辑,我们经常使用环境变量来传值,或者定义一个行为。写过程序的人都懂。
映射本机还有镜像的端口。这个没有什么好说的。
有两种格式,
可以对应 docker 操作中的 -v my/path/:/docker/path
还可以使用单方面的 -v /path
这样的话 就相当于 一个匿名映射, 其实还是在本机有对应目录的。
使用docker inspect -f {{.Volumes}} /path
可以看到详细信息
我根据我自己的体验,给出几点需要注意的
标签:remove bin processes format rdp 服务 环境变量 test bind
原文地址:https://www.cnblogs.com/xtjatswc/p/10368483.html