Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created April 16, 2019 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NyaGarcia/232be7fedb0247e05bb2d572d0b67424 to your computer and use it in GitHub Desktop.
Save NyaGarcia/232be7fedb0247e05bb2d572d0b67424 to your computer and use it in GitHub Desktop.
docker-compose.yml file for dockerizing mongoDB
version: "3.1"
services:
db:
container_name: mongoDB
image: mongo:latest
restart: always
volumes:
- ./pokeData:/data/db
environment:
- MONGO_INITDB_DATABASE= Pokemon
ports:
- 27017:27017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment