mirror of
https://github.com/docker/compose.git
synced 2025-07-10 07:14:27 +02:00
- When no command is passed but `--entrypoint` is, set Cmd to `[]` - When command is a single empty string, set Cmd to `[""]` Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
7 lines
99 B
YAML
7 lines
99 B
YAML
version: "2"
|
|
services:
|
|
test:
|
|
image: busybox
|
|
entrypoint: printf
|
|
command: default args
|