cbm64
cbm64

Reputation: 1129

Space in path for docker-compose.yml

I am getting;

Error: Command failed: docker stack deploy --compose-file /Users/myUser/OneDrive - My Company/Code/myProject/node_modules/tools/lib/wdio/docker-compose.yml wdio
"docker stack deploy" requires exactly 1 argument.

I suspect the space in the path because the code is hosted on an MS OneDrive. I cannot change the name of the One Drive. Is there a way to get docker to handle the spaces correctly on a Mac/Unix?

Upvotes: 1

Views: 6123

Answers (1)

Fran Cruz
Fran Cruz

Reputation: 105

You can try this:

docker stack deploy --compose-file /Users/myUser/OneDrive\ -\ My\ Company/Code/myProject/node_modules/tools/lib/wdio/docker-compose.yml wdio

Upvotes: 2

Related Questions