Skip to content

Instantly share code, notes, and snippets.

@HoelShare
Last active December 4, 2017 07:30
Show Gist options
  • Save HoelShare/562e80cada082068a8fe34e6d2e257b6 to your computer and use it in GitHub Desktop.
Save HoelShare/562e80cada082068a8fe34e6d2e257b6 to your computer and use it in GitHub Desktop.
Vindinium docker-compose
version: '3'
services:
mongo:
image: mongo:latest
container_name: "mongo"
volumes:
- ./data/db:/data/db
vindinium:
container_name: "vindinium"
image: jamesmmchugh/vindinium-docker:latest
ports:
- 9000:9000
links:
- mongo:mongo
depends_on:
- mongo
stdin_open: true
tty: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment