Skip to content

Instantly share code, notes, and snippets.

@arysom
Created October 21, 2018 19:35
Show Gist options
  • Select an option

  • Save arysom/792b8be65191184243d3758d0fa6050d to your computer and use it in GitHub Desktop.

Select an option

Save arysom/792b8be65191184243d3758d0fa6050d to your computer and use it in GitHub Desktop.
mongo express docker compose
version: '2'
services:
mongodb:
image: bitnami/mongodb:4.1-ol-7
volumes:
- mongodbdata:/bitnami
# ports:
# - '27017:27017'
web:
image: node:8.12-alpine
container_name: myexpress
volumes:
- .:/app
working_dir: /app
command: npm start
ports:
- '3000:3000'
links:
- mongodb
volumes:
mongodbdata:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment