Skip to content
Snippets Groups Projects
Commit 0ccdde6f authored by Matt Kirby's avatar Matt Kirby
Browse files

Added user-service to dockercompose

parent 4f4f480c
No related branches found
No related tags found
1 merge request!9Create endpoint for user-registration
......@@ -10,9 +10,26 @@ services:
environment:
- MONGO_URI=mongodb://feed-mongo:27017/
mongo:
user-service:
build:
context: './backend-services/user-service'
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "9001:9000"
feed-mongo:
image: mongo
container_name: feed-mongo
ports:
- "27017:27017"
user-mongo:
image: mongo
container_name: user-mongo
ports:
- "27018:27017"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment