GitLab Docker Executor #1.5 Bridge Network

Опубликовано: 09 Октябрь 2024
на канале: Wildest Imagination
185
1

In this video we will see that how GitLab uses Docker's default bridge network method to connect different containers.

Docker has got different networking methods through which different containers can be connected with each other. From these methods the method used by GitLab and Docker as first solution is default bridge network method.

Bridge methods has got 2 options default method and user-defined method. Default method we can use by just including --link option whereas in user-defined method we need to create our own network and then we need to connect different containers.

We will see all the Docker commands to connect the containers from the perspective of GitLab and its CI-CD pipeline.

We will also see that when we mention image and services keywords in GitLab CI-CD pipeline, what are the operations going to be carried out in back-end by GitLab.

You can refer below links for more details on bridge networking method of Docker.

https://docs.docker.com/network/bridge/
https://docs.docker.com/network/links/
https://docs.docker.com/network/netwo...

Please use below link to get the files that I have used in this session.
https://gitlab.com/Nayan.1989/youtube...