Created
May 12, 2024 16:26
-
-
Save alsgu3rra/b8ef75733dea4b9a66d28b0cd1875a38 to your computer and use it in GitHub Desktop.
Container Mongo Express + Mongodb
This file contains 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
database-viewer: | |
image: mongo-express | |
environment: | |
- ME_CONFIG_MONGODB_SERVER=database | |
- ME_CONFIG_MONGODB_PORT=27017 | |
ports: | |
- 8081:8081 | |
depends_on: | |
- database | |
database: | |
image: bitnami/mongodb:6.0.0 | |
environment: | |
- ALLOW_EMPTY_PASSWORD=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment