Skip to content

Instantly share code, notes, and snippets.

@sathed
Created November 28, 2018 20:16
Show Gist options
  • Save sathed/18faee5b7bc9bc1ffde6c39d5cdf171d to your computer and use it in GitHub Desktop.
Save sathed/18faee5b7bc9bc1ffde6c39d5cdf171d to your computer and use it in GitHub Desktop.
# Use root/example as user/password credentials
version: '3.1'
services:
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment