This message was deleted.
# general
s
This message was deleted.
b
is your docker daemon running?
a
Yup. It created the container and starts it, but it doesn’t move to
created
b
Pulumi is just talking to the docker daemon, so I imagine something in here is not being created, can you check the networks and image are being created too?
a
Looks like it’s all there.
docker network ls
shows the bridge and the container is started and I can connect to it, so the remoteimage pulled in properly
b
I see you have restart on-failure, is your container created and crashing/restarting?
a
It’s not. So, I was able to get it into the created state by commenting out:
Copy code
// Attach: pulumi.Bool(true),
// Logs:   pulumi.Bool(true),
// Start:  pulumi.Bool(true),
I’m guessing the Attach call caused it?
b
ah! yeah that might be it, glad you got it figured out