This message was deleted.
# general
s
This message was deleted.
d
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!