You must have mongodb installed in your machine and already configured to allow connections from docker container.
To do that, modify file /etc/mongodb.conf and add docker bridge ip in net section of the configuration
# bind ip to 172.17.0.1 to allow connections from docker container
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1,172.17.0.1
Clone this repo
git clone https://github.com/kbiits/go-microservices-grpc-exampleCreate user for mongodb
mongo user/mongo-init.jsCreate docker network
docker network create microservicesBuild golang microservices app
note: I don't add build steps to Dockerfile because I want to reduce the size of created images
Build advice service :
cd advice
make build
cd ..Build user service :
cd user
make build
cd ..Build gateway :
cd gateway
make build
cd ..Run docker
docker compose up -dAnd taraa, you can see the website running on localhost:3000