Welcome to the Linux Foundation Forum!

Lab 2, Part 2: Error: No such container: mongodb

First we create container with name mongo

docker container run -d --name mongo --hostname mongo -v /tmp/lab2/mongodb:/data/db mongo:5.0

And then we try to get port of that container by using wrong name

MIP=$(docker container inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' mongodb) && echo $MIP

Is it known issue? Should we fix it?

Comments

  • That's correct - we will issue a correction soon. Thank you for the report.

    The command should be:

    MIP=$(docker container inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' mongo) && echo $MIP

  • Posts: 490
    edited March 2023

    @akay, thank you for flagging this issue. It has been corrected.

    Regards,
    Magda
    The Linux Foundation Training Team

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Categories

Upcoming Training