Replies: 1 comment
|
Using the Docker CLI: docker inspect ...
docker image inspect ...
docker network inspect ...For programmatic access you can use the underlying import { getContainerRuntimeClient } from "testcontainers";
const containerRuntimeClient = await getContainerRuntimeClient();
await containerRuntimeClient.container.inspect(...);
await containerRuntimeClient.image.inspect(...); |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Im started using testcontainers, i want to see what arguments are running in the .start().
Doenst give any clue!
All reactions