Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active September 2, 2019 19:32
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/59e3d4d1e43dbb1a9290a476ec19bfcb to your computer and use it in GitHub Desktop.
Save NyaGarcia/59e3d4d1e43dbb1a9290a476ec19bfcb to your computer and use it in GitHub Desktop.
MongoDB Compose file with named .env file
version: '3.1'
services:
db:
container_name: Mongo-db
image: mongo:latest
restart: always
volumes:
- ./myData:/data/db
env_file:
- ./secret-stuff.env
ports:
- 27020:27017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment