Docker Networking | Docker bridge network deep dive | Container bridge drive

    22
    39



    This video covers detailed concepts of docker bridge networking, with demos.
    Where we take a couple of docker containers and ping them using its IP and container names

    For Online/Classroom training and project support please contact
    Java Home Cloud, Banglore India
    +919886611117

    source

    Previous articleInstall PowerShell Module to Windows Host with Ansible
    Next articleKubernetes create pod / docker create container

    39 COMMENTS

    1. I was actually figuring out the command on how to run my docker container in a custom created network bridge, so this helped me a lot šŸ™‚

      it was :

      docker run -d -p 5000:5000 –name container_name –network custom-net container_img_name

      The thing is that I ssh to my containers with :

      docker exec -it container_name /bin/bash

      Thanks !