引用地址:单机Docker如何使用Docker-compose实现容器数量动态伸缩_浅浅919的博客-优快云博客_docker 自动伸缩
单机Docker如何使用Docker-compose实现容器数量动态伸缩
查看帮助手册
[root@node1 ~]# docker-compose -h
Define and run multi-container applications with Docker.
Usage:
docker-compose [-f <arg>...] [options] [COMMAND] [ARGS...]
docker-compose -h|--help
Options:
-f, --file FILE Specify an alternate compose file
(default: docker-compose.yml)
-p, --project-name NAME Specify an alternate project name
(default: directory name)
--verbose Show more output
--log-level LEVEL Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
--no-ansi Do not print ANSI control characters
-v, --version Print version and exit
-H, --host HOST Daemon socket to connect to
--tls Use TLS; implied by --tlsverify
--tlscacert CA_PATH Trust certs signed only by this CA
--tlscert CLIENT_CERT_PATH Path to TLS certificate file
--tlskey TLS_KEY_PATH Path to TLS key file
--tlsverify Use TLS and verify the remote
--skip-hostname-check Don't check the daemon's hostname against the
name specified in the client certificate
--project-directory PATH Specify an alternate working directory
(default: the path of the Compose file)
--compatibility If set, Compose will attempt to convert deploy
keys in v3 files to their non-Swarm equivalent
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
images List images
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
其中有一个参数scale,其描述是Set number of containers for a service,意思是设置服务配置中各个容器的数量,没错!这就是我们要找的参数拉
参数scale使用条件说明
不能指定容器名container_name
不能手动绑定端口映射,如:
ports:
- 38500:8500
1
2
配置示例(正确):
version: '3.1'
services:
consul:
restart: always
image: consul:1.9.3
privileged: true
ports:
- 8500
entrypoint: ["docker-entrypoint.sh"]
command: ["agent", "-dev", "-ui", "-client", "0.0.0.0"]
参数scale使用
docker-compose -f docker-compose.yml -p demo up -d --scale consul=3
1
启动效果:
多个容器需要多实例运行,增加--scale xxx=n即可
如:docker-compose -f docker-compose.yml -p demo up -d --scale consul=3 --scale redis=3