Last active
September 25, 2025 15:35
-
-
Save ScriptBytes/2c0b8658fe6e16467f697f76be06f7bd to your computer and use it in GitHub Desktop.
Revisions
-
ScriptBytes renamed this gist
Oct 9, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ScriptBytes created this gist
Oct 9, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ version: '3.8' services: mongo: image: mongo:7.0 environment: MONGO_INITDB_ROOT_USERNAME: mongadmin MONGO_INITDB_ROOT_PASSWORD: LikeAndSubscribe ports: - 27017:27017 volumes: - mongodata:/data/db volumes: mongodata: driver: local 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ docker run -d \ --name mongo-demo \ -e MONGO_INITDB_ROOT_USERNAME=mongoadmin \ -e MONGO_INITDB_ROOT_PASSWORD=LikeAndSubscribe \ -p 27017:27017 \ -v mongodemo:/data/db \ mongo:7.0