Docker Compose only takes the first word in multiline command
I want to run a multiline command when starting a container in docker compose: services: foo: image: alpine:edge entrypoint: ["/bin/sh", "-c"] command: > apk add --no-cache curl Running docker compose up gives me the following errors: [+] Running 2/0 ✔…