mirror of https://github.com/docker/docs.git
updated syntax for command in Compose files (#3498)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
This commit is contained in:
parent
b19f143629
commit
da9734a626
|
@ -97,7 +97,7 @@ Override the default command.
|
||||||
The command can also be a list, in a manner similar to
|
The command can also be a list, in a manner similar to
|
||||||
[dockerfile](/engine/reference/builder.md#cmd):
|
[dockerfile](/engine/reference/builder.md#cmd):
|
||||||
|
|
||||||
command: [bundle, exec, thin, -p, 3000]
|
command: ["bundle", "exec", "thin", "-p", "3000"]
|
||||||
|
|
||||||
### cgroup_parent
|
### cgroup_parent
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,7 @@ Override the default command.
|
||||||
The command can also be a list, in a manner similar to
|
The command can also be a list, in a manner similar to
|
||||||
[dockerfile](/engine/reference/builder.md#cmd):
|
[dockerfile](/engine/reference/builder.md#cmd):
|
||||||
|
|
||||||
command: [bundle, exec, thin, -p, 3000]
|
command: ["bundle", "exec", "thin", "-p", "3000"]
|
||||||
|
|
||||||
### cgroup_parent
|
### cgroup_parent
|
||||||
|
|
||||||
|
|
|
@ -196,7 +196,7 @@ Override the default command.
|
||||||
The command can also be a list, in a manner similar to
|
The command can also be a list, in a manner similar to
|
||||||
[dockerfile](/engine/reference/builder.md#cmd):
|
[dockerfile](/engine/reference/builder.md#cmd):
|
||||||
|
|
||||||
command: [bundle, exec, thin, -p, 3000]
|
command: ["bundle", "exec", "thin", "-p", "3000"]
|
||||||
|
|
||||||
### cgroup_parent
|
### cgroup_parent
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue