I'm trying to run the example <https://www.pulumi....
# aws
f
I'm trying to run the example https://www.pulumi.com/docs/tutorials/aws/ecs-fargate/ ibut i'm getting this error.. error: Got permission denied while trying to connect to the Docker daemon socket at unix///var/run/docker.sock Get http://%2Fvar%2Frun%2Fdocker.sock/v1.39/version: dial unix /var/run/docker.sock: connect: permission denied error: Error: No 'docker' command available on PATH: Please install to use container 'build' mode. what did I miss??
l
Do you have Docker installed on your local machine? The code example first tries to build a Docker image from the
./app
folder you have on your workstation.
This happens in step 4 of the article, in this line:
Copy code
image: awsx.ecs.Image.fromPath("nginx", "./app"),
f
yes, i have
but I added now to the group and it work! thanks!