Created
November 30, 2022 10:03
-
-
Save jose16-21/60eac515430643f52cd6abb0dccfa2f7 to your computer and use it in GitHub Desktop.
docker-compose mongo
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.7' | |
services: | |
mongo: | |
image: mongo:latest | |
container_name: mongo | |
restart: always | |
ports: | |
- 27017:27017 | |
networks: | |
default: | |
name: mynetwork | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment