How can I debug this? ```docker:index:Container t...
# general
d
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
d
Thanks!