-
-
Save un4ckn0wl3z/88a27fbdba5f356fcea90be585235bd1 to your computer and use it in GitHub Desktop.
Docker compose for mongodb and mongo express
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
mongodb: | |
image: mongo | |
container_name: mongodb | |
environment: | |
- MONGO_INITDB_ROOT_USERNAME=root | |
- MONGO_INITDB_ROOT_PASSWORD=pass12345 | |
volumes: | |
- mongodb_data:/data/db | |
networks: | |
- mongodb_network | |
ports: | |
- 27017:27017 | |
healthcheck: | |
test: echo 'db.stats().ok' | mongo localhost:27017/test --quiet | |
interval: 10s | |
timeout: 10s | |
retries: 10 | |
restart: unless-stopped | |
mongo-express: | |
image: mongo-express | |
container_name: mongo-express | |
environment: | |
- ME_CONFIG_MONGODB_SERVER=mongodb | |
- ME_CONFIG_MONGODB_ENABLE_ADMIN=true | |
- ME_CONFIG_MONGODB_ADMINUSERNAME=root | |
- ME_CONFIG_MONGODB_ADMINPASSWORD=pass12345 | |
- ME_CONFIG_BASICAUTH_USERNAME=admin | |
- ME_CONFIG_BASICAUTH_PASSWORD=admin123 | |
depends_on: | |
- mongodb | |
networks: | |
- mongodb_network | |
ports: | |
- 8081:8081 | |
healthcheck: | |
test: wget --quiet --tries=3 --spider http://admin:admin123@mongo-express:8081 || exit 1 | |
interval: 30s | |
timeout: 10s | |
retries: 3 | |
restart: unless-stopped | |
volumes: | |
mongodb_data: | |
driver: local | |
name: mongodb_data | |
networks: | |
mongodb_network: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --name mongodb-container -p 27017:27017 -d mongo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment