@@ -5,48 +5,47 @@ Docker Compose
5
5
6
6
### Subcommands
7
7
8
- | Name | Description |
9
- | --- | --- |
10
- | [ ` build ` ] ( compose_build.md ) | Build or rebuild services |
11
- | [ ` convert ` ] ( compose_convert.md ) | Converts the compose file to platform's canonical format |
12
- | [ ` cp ` ] ( compose_cp.md ) | Copy files/folders between a service container and the local filesystem |
13
- | [ ` create ` ] ( compose_create.md ) | Creates containers for a service. |
14
- | [ ` down ` ] ( compose_down.md ) | Stop and remove containers, networks |
15
- | [ ` events ` ] ( compose_events.md ) | Receive real time events from containers. |
16
- | [ ` exec ` ] ( compose_exec.md ) | Execute a command in a running container. |
17
- | [ ` images ` ] ( compose_images.md ) | List images used by the created containers |
18
- | [ ` kill ` ] ( compose_kill.md ) | Force stop service containers. |
19
- | [ ` logs ` ] ( compose_logs.md ) | View output from containers |
20
- | [ ` ls ` ] ( compose_ls.md ) | List running compose projects |
21
- | [ ` pause ` ] ( compose_pause.md ) | Pause services |
22
- | [ ` port ` ] ( compose_port.md ) | Print the public port for a port binding. |
23
- | [ ` ps ` ] ( compose_ps.md ) | List containers |
24
- | [ ` pull ` ] ( compose_pull.md ) | Pull service images |
25
- | [ ` push ` ] ( compose_push.md ) | Push service images |
26
- | [ ` restart ` ] ( compose_restart.md ) | Restart service containers |
27
- | [ ` rm ` ] ( compose_rm.md ) | Removes stopped service containers |
28
- | [ ` run ` ] ( compose_run.md ) | Run a one-off command on a service. |
29
- | [ ` start ` ] ( compose_start.md ) | Start services |
30
- | [ ` stop ` ] ( compose_stop.md ) | Stop services |
31
- | [ ` top ` ] ( compose_top.md ) | Display the running processes |
32
- | [ ` unpause ` ] ( compose_unpause.md ) | Unpause services |
33
- | [ ` up ` ] ( compose_up.md ) | Create and start containers |
34
- | [ ` version ` ] ( compose_version.md ) | Show the Docker Compose version information |
8
+ | Name | Description |
9
+ | : -------------------------------- | : ------------------------------------------------------------------------ |
10
+ | [ ` build ` ] ( compose_build.md ) | Build or rebuild services |
11
+ | [ ` convert ` ] ( compose_convert.md ) | Converts the compose file to platform's canonical format |
12
+ | [ ` cp ` ] ( compose_cp.md ) | Copy files/folders between a service container and the local filesystem |
13
+ | [ ` create ` ] ( compose_create.md ) | Creates containers for a service. |
14
+ | [ ` down ` ] ( compose_down.md ) | Stop and remove containers, networks |
15
+ | [ ` events ` ] ( compose_events.md ) | Receive real time events from containers. |
16
+ | [ ` exec ` ] ( compose_exec.md ) | Execute a command in a running container. |
17
+ | [ ` images ` ] ( compose_images.md ) | List images used by the created containers |
18
+ | [ ` kill ` ] ( compose_kill.md ) | Force stop service containers. |
19
+ | [ ` logs ` ] ( compose_logs.md ) | View output from containers |
20
+ | [ ` ls ` ] ( compose_ls.md ) | List running compose projects |
21
+ | [ ` pause ` ] ( compose_pause.md ) | Pause services |
22
+ | [ ` port ` ] ( compose_port.md ) | Print the public port for a port binding. |
23
+ | [ ` ps ` ] ( compose_ps.md ) | List containers |
24
+ | [ ` pull ` ] ( compose_pull.md ) | Pull service images |
25
+ | [ ` push ` ] ( compose_push.md ) | Push service images |
26
+ | [ ` restart ` ] ( compose_restart.md ) | Restart service containers |
27
+ | [ ` rm ` ] ( compose_rm.md ) | Removes stopped service containers |
28
+ | [ ` run ` ] ( compose_run.md ) | Run a one-off command on a service. |
29
+ | [ ` start ` ] ( compose_start.md ) | Start services |
30
+ | [ ` stop ` ] ( compose_stop.md ) | Stop services |
31
+ | [ ` top ` ] ( compose_top.md ) | Display the running processes |
32
+ | [ ` unpause ` ] ( compose_unpause.md ) | Unpause services |
33
+ | [ ` up ` ] ( compose_up.md ) | Create and start containers |
34
+ | [ ` version ` ] ( compose_version.md ) | Show the Docker Compose version information |
35
35
36
36
37
37
### Options
38
38
39
- | Name | Type | Default | Description |
40
- | --- | --- | --- | --- |
41
- | ` --ansi ` | ` string ` | ` auto ` | Control when to print ANSI control characters ("never"\| "always"\| "auto") |
42
- | ` --compatibility ` | | | Run compose in backward compatibility mode |
43
- | ` --env-file ` | ` string ` | | Specify an alternate environment file. |
44
- | ` -f ` , ` --file ` | ` stringArray ` | | Compose configuration files |
45
- | ` --parallel ` | ` int ` | ` -1 ` | Control max parallelism, -1 for unlimited |
46
- | ` --profile ` | ` stringArray ` | | Specify a profile to enable |
47
- | ` --project-directory ` | ` string ` | | Specify an alternate working directory
48
- (default: the path of the, first specified, Compose file) |
49
- | ` -p ` , ` --project-name ` | ` string ` | | Project name |
39
+ | Name | Type | Default | Description |
40
+ | :-----------------------| :--------------| :--------| :----------------------------------------------------------------------------------------------------|
41
+ | ` --ansi ` | ` string ` | ` auto ` | Control when to print ANSI control characters ("never"\| "always"\| "auto") |
42
+ | ` --compatibility ` | | | Run compose in backward compatibility mode |
43
+ | ` --env-file ` | ` string ` | | Specify an alternate environment file. |
44
+ | ` -f ` , ` --file ` | ` stringArray ` | | Compose configuration files |
45
+ | ` --parallel ` | ` int ` | ` -1 ` | Control max parallelism, -1 for unlimited |
46
+ | ` --profile ` | ` stringArray ` | | Specify a profile to enable |
47
+ | ` --project-directory ` | ` string ` | | Specify an alternate working directory<br >(default: the path of the, first specified, Compose file) |
48
+ | ` -p ` , ` --project-name ` | ` string ` | | Project name |
50
49
51
50
52
51
<!-- -MARKER_GEN_END-->
0 commit comments