Skip to content

Instantly share code, notes, and snippets.

@EnriqueTejeda
Created April 26, 2022 16:53
Show Gist options
  • Save EnriqueTejeda/ce331f7f4dd03e3c75df00d0d4d06964 to your computer and use it in GitHub Desktop.
Save EnriqueTejeda/ce331f7f4dd03e3c75df00d0d4d06964 to your computer and use it in GitHub Desktop.
Docker-compose for setting up a mongodb & mongoclient container
version: '2'
services:
mongodb:
image: mongo:latest
container_name: mongodb
hostname: mongodb
ports:
- 27017:27017
mongoclient:
image: mongoclient/mongoclient:latest
container_name: mongoclient
hostname: mongoclient
depends_on:
- mongodb
ports:
- 3300:3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment