1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
docker-compose --help
Usage:
docker-compose [-f <arg>...] [options] [COMMAND] [ARGS...]
docker-compose -h|--help
Options:
-f, --file FILE 文件件文件指定另一个合成文件(default: docker-compose.yml)
-p, --project-name 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 keys
in v3 files to their non-Swarm equivalent
--env-file PATH Specify an alternate environment file
Commands:
build #生成或重建服务
bundle #从Compose文件生成Docker bundle
config #验证并查看撰写文件
create #创建服务
down #停止并删除容器、网络、映像和卷
events #从容器接收实时事件
exec #在正在运行的容器中执行命令
help #获取命令帮助
images #列出图像
kill #杀死容器
logs #查看容器的输出
pause #暂停服务
port #打印端口绑定的公共端口
ps #列出容器
pull #拉取服务映像
push #推送服务映像
restart #重新启动服务
rm #移除停止的容器
run #运行一次性命令
scale #服务集装箱数量
start #启动服务
stop #停止服务
top #显示正在运行的进程
unpause #取消暂停服务
up #创建并启动容器
version #显示Docker Compose版本信息
|