0 votes
in Docker by

How can you inspect the details of a Docker network?

a) docker network view NETWORK_NAME

b) docker network show NETWORK_NAME

c) docker network detail NETWORK_NAME

d) docker network inspect NETWORK_NAME

1 Answer

0 votes
by
d) docker network inspect NETWORK_NAME

Explanation:

The docker network inspect command is used to display detailed information about a network.
...