🚀 Supply-chain tech moves fast. Get curated signals on WMS, warehouse automation, robotics, AI, and logistics. Visit Supply Chain Tech Signals →

Docker automatically exits

Posted on October 19, 2022 in CI/CD , Docker • Tagged with GIT, Pipeline, CI/CD, Docker, Docker Compose

Are you curious why docker container exits automatically?

Docker Container needs some process running in the foreground (Please note , Not as a background process) to keep the container running.

Dont know how to make a container running with a simple process in the foreground?

# open container with a shell prompt …

Continue reading

Docker , Docker compose network isssues

Posted on March 25, 2022 in CI/CD , Docker • Tagged with GIT, Pipeline, CI/CD, Docker, Docker network

Usecase : Setup a Docker compose file to bringup entire infrastructure required to to test a microservice(infact combination of couple of microservices as we wanted to run domain based integration tests) as part of the CICD pipelines

Technologies : One service go based microservice , another .Net based microservie that expose grpc …


Continue reading

Gitlab Scripts for automatic release notes(CHANGELOG.md) generation

Posted on February 12, 2022 in CI/CD • Tagged with GIT, Pipeline, CI/CD, Release Notes, Changelog.md

Very Common Usecase is genrate Release Notes(CHANGELOG.md) automatically. Below use case here has two jobs underr release-creation stage. One to generate CHANGELOG.md and other to generate release automatically. i.e Whenever a tag is created on any project a release with corresponding release notes , artifacts are generated …


Continue reading