Skip to content

Latest commit

 

History

History
 
 

order-service

Running application in docker containers:

Using Docker CLI

docker network ls
docker network create --driver bridge micro_network (skip if already created)
docker build -t order-srv .
docker run -p 5003:5003 --detach --name order-service --net=micro_network order-srv