Skip to content

Instantly share code, notes, and snippets.

@ivanauliaa
Created March 14, 2022 02:46
Show Gist options
  • Save ivanauliaa/61129f4aa14eeb68fa5646bdddcc1b44 to your computer and use it in GitHub Desktop.
Save ivanauliaa/61129f4aa14eeb68fa5646bdddcc1b44 to your computer and use it in GitHub Desktop.
mongoDB with mongo express
version: "3.1"
services:
mongo:
image: mongo:5.0.6
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express:1.0.0-alpha
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment