https://pulumi.com logo
#aws
Title
f

flat-parrot-25697

03/30/2020, 8:01 AM
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

limited-rainbow-51650

03/30/2020, 8:04 AM
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

flat-parrot-25697

03/30/2020, 8:15 AM
yes, i have
but I added now to the group and it work! thanks!
5 Views