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

Docker execute a command and store the output to a variable

Posted on February 22, 2023 in Docker • Tagged with Shell, CLI, Docker, Docker Compose

This command bringsup a docker and exectes the command inside the docker and stores the output into client

client =$(docker exec command)

Example : This command bringsup a docker and exectes the command inside the docker and stores the output into client

``` client=$(docker-compose -f quickstart.yml exec hydra \ hydra create …


Continue reading

VAS - Value-Added Services

Posted on February 18, 2023 in SCM • Tagged with SCM, WMS, OMS, Supply Chain

VAS - Value-Added Services

VAS stands for Value-Added Services. In a warehouse or distribution center, the VAS area is a designated space where additional services are performed on products beyond simple storage and handling. These services can include:

  • Kitting and Assembly: The process of assembling individual items into a single package …

Continue reading

Supply Chain Management Glossary

Posted on February 16, 2023 in SCM • Tagged with SCM, WMS, OMS, Supply Chain

Glossary Supply Chain Management

  1. Supply chain: The network of businesses, individuals, activities, and resources involved in creating and delivering a product or service to the end customer.

  2. Logistics: The process of planning, implementing, and controlling the flow of goods and services from the point of origin to the point of …


Continue reading

Windows Subsystem for Linux(WSL)Memory Issues - How to Limit

Posted on January 30, 2023 in OS • Tagged with WSL, Windows11, Memory, vmmemWSL, WSL2

Windows Subsystem for Linux (WSL2) Memory Usage - Limiting

According to Windows docs ,

The version of WSL that you are running will impact the configuration settings. WSL 2 runs as a lightweight virtual machine (VM), 
so uses virtualization settings that allow you to control the amount of memory or processors used …

Continue reading

Consul Quik Start on MiniKube using Helm Charts

Posted on January 22, 2023 in infra • Tagged with infrastructure, network, Consul, MiniKube, Helm Charts

Pre-requisites

Make sure you have

2 CPUs or more 4GB of free memory 30GB of free disk space

Install MiniKube

minikube is local Kubernetes, focusing on making it easy to learn and develop for kubernetes.

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local …

Continue reading

e-com vs Retail

Posted on December 03, 2022 in SCM • Tagged with SCM, WMS, OMS, Supply Chain, e-com

E-Com vs Retail

E-commerce and retail are both methods of selling goods, but they differ in the way they deliver products to customers.

Retail involves selling goods directly to customers through physical storefronts, such as malls, department stores, or independent shops. In a retail store, customers can see, touch, and …


Continue reading

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

Windows Subsystem for Linux(WSL) Reset password

Posted on October 06, 2022 in OS • Tagged with WSL, Windows11, Password, WSL2

Windows Subsystem for Linux (WSL2) Reset Password

  1. Open cmd.exe
  2. wsl -u root
  3. passwd root
  4. Enter New password
  5. Renter New password
  6. exit
  7. wsl
  8. Test using sudo echo "test" , you should see "test" message

Git checkout only specific sub folder or sub module

Posted on September 22, 2022 in git • Tagged with GIT

Often we just need to clone/download a subfolder/submodule from a bit repo Example : https://github.com/eugenp/tutorials - This is very big repo with lot of subdirectories

This project has 100's of submodule , however if you are just interested in downloading a subdirectory ex:You want to download …


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