When I run docker-compose in my terminal,
I open the docker-compose extension
The projects section shows the directory where the docker-compose is located
under services, i get 3 (X) Failed to execute docker command
This is the command in full as appears in the popup window when i mouse-over:
docker ps -a --format '{{.Label "com.docker.compose.service"}}' --filter label=com.docker.compose.project=Core --filter name=core-couchbase-1
The following partial commands work:
docker ps -a --filter label=com.docker.compose.project=Coredocker ps -a --filter name=core-couchbase-1
The following fails:
docker ps -a --format '{{.Names}}: {{.Label "com.docker.compose.service"}}'
it fails with:
failed to parse template: template: :1: function "com" not defined
My Setup:
Issue
When I run docker-compose in my terminal, I open the docker-compose extension
The projects section shows the directory where the docker-compose is located under services, i get 3 (X) Failed to execute docker command
This is the command in full as appears in the popup window when i mouse-over:
docker ps -a --format '{{.Label "com.docker.compose.service"}}' --filter label=com.docker.compose.project=Core --filter name=core-couchbase-1
The following partial commands work:
docker ps -a --filter label=com.docker.compose.project=Core
docker ps -a --filter name=core-couchbase-1
The following fails:
docker ps -a --format '{{.Names}}: {{.Label "com.docker.compose.service"}}'
it fails with:failed to parse template: template: :1: function "com" not defined