https://pulumi.com logo
d

dazzling-sundown-39670

08/21/2023, 8:35 AM
How can I debug this?
Copy code
docker:index:Container  test                   **creating failed**

* container exited immediately
Copy code
const ubuntu = new docker.RemoteImage(
  "ubuntu",
  { name: "ubuntu:precise" },
  dockerProviderOpts
);

const test = new docker.Container(
  "test",
  {
    image: ubuntu.imageId,
  },
  dockerProviderOpts
);
Can I capture the output somehow?
m

melodic-tomato-39005

08/21/2023, 8:55 AM
d

dazzling-sundown-39670

08/21/2023, 8:09 PM
Thanks!
2 Views