Created
February 6, 2022 18:47
-
-
Save amoilanen/49966b7e4bb9eb6e2d4f061e4f33335c to your computer and use it in GitHub Desktop.
Setting up local MongoDB `docker-compose -f stack.yaml up`. Authentication is disabled by default for the local development env
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.1' | |
services: | |
local-mongo: | |
image: mongo:5.0.6 | |
restart: always | |
ports: | |
- 27017:27017 | |
local-mongo-express: | |
image: mongo-express:0.54.0 | |
restart: always | |
ports: | |
- 8081:8081 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment