Spawn mongo server and express asynchronous sever setup script for local and docker deployment Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to create User/Database in script for Docker PostgresHow to connect to local MySQL server through Docker?ssh tunnel to remote dockerized mongo serverExposing docker container on local serverHow to manage multiple backend stacks for development?Lost connection to MySQL server when creating database from script in a Docker containerSpin Up Docker Mongo With Replica SetRunning a Bash Script Continuously Across Multiple Servers (Local, Jumpbox and Dev server)How to run a nodejs app in a mongodb docker image?Can not execute js files over mongo shell in sh script in docker container

A journey... into the MIND

Will the Antimagic Field spell cause elementals not summoned by magic to dissipate?

Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?

What's the difference between using dependency injection with a container and using a service locator?

How to produce a PS1 prompt in bash or ksh93 similar to tcsh

Is Bran literally the world's memory?

Why did Israel vote against lifting the American embargo on Cuba?

What kind of equipment or other technology is necessary to photograph sprites (atmospheric phenomenon)

Putting Ant-Man on house arrest

Can I take recommendation from someone I met at a conference?

How to make an animal which can only breed for a certain number of generations?

Help Recreating a Table

Can gravitational waves pass through a black hole?

Why not use the yoke to control yaw, as well as pitch and roll?

Normal Operator || T^2|| = ||T||^2

Why aren't these two solutions equivalent? Combinatorics problem

Why does BitLocker not use RSA?

“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?

Is there a verb for listening stealthily?

Protagonist's race is hidden - should I reveal it?

Lights are flickering on and off after accidentally bumping into light switch

Who can become a wight?

Marquee sign letters

Why do people think Winterfell crypts is the safest place for women, children & old people?



Spawn mongo server and express asynchronous sever setup script for local and docker deployment



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to create User/Database in script for Docker PostgresHow to connect to local MySQL server through Docker?ssh tunnel to remote dockerized mongo serverExposing docker container on local serverHow to manage multiple backend stacks for development?Lost connection to MySQL server when creating database from script in a Docker containerSpin Up Docker Mongo With Replica SetRunning a Bash Script Continuously Across Multiple Servers (Local, Jumpbox and Dev server)How to run a nodejs app in a mongodb docker image?Can not execute js files over mongo shell in sh script in docker container



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm new to MEAN stack development and was wondering whats the ideal way to spin an mongo+express environment.



Running synchronous bash script commands make the mongo server stop further execution and listen for connections. What would be a local + docker compatible script to initiate the environment ?










share|improve this question




























    0















    I'm new to MEAN stack development and was wondering whats the ideal way to spin an mongo+express environment.



    Running synchronous bash script commands make the mongo server stop further execution and listen for connections. What would be a local + docker compatible script to initiate the environment ?










    share|improve this question
























      0












      0








      0








      I'm new to MEAN stack development and was wondering whats the ideal way to spin an mongo+express environment.



      Running synchronous bash script commands make the mongo server stop further execution and listen for connections. What would be a local + docker compatible script to initiate the environment ?










      share|improve this question














      I'm new to MEAN stack development and was wondering whats the ideal way to spin an mongo+express environment.



      Running synchronous bash script commands make the mongo server stop further execution and listen for connections. What would be a local + docker compatible script to initiate the environment ?







      node.js mongodb docker express mean-stack






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 9 at 2:53









      ir2pidir2pid

      1,14911641




      1,14911641






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Many people use docker-compose for a situation like this. You can set up a docker-compose configuration file where you describe services that you would like to run. Each service defines a docker image. In your case, you could have mongodb, your express app and your angular app defined as services. Then, you can launch the whole stack with docker-compose up.



          A sample docker-compose config file would look something like:



          version: '2' # specify docker-compose version

          # Define the services/containers to be run
          services:
          angular: # name of the first service
          build: angular-client # specify the directory of the Dockerfile
          ports:
          - "4200:4200" # specify port forewarding

          express: #name of the second service
          build: express-server # specify the directory of the Dockerfile
          ports:
          - "3000:3000" #specify ports forewarding

          database: # name of the third service
          image: mongo # specify image to build container from
          ports:
          - "27017:27017" # specify port forewarding


          which comes from an article here: https://scotch.io/tutorials/create-a-mean-app-with-angular-2-and-docker-compose






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073558%2fspawn-mongo-server-and-express-asynchronous-sever-setup-script-for-local-and-doc%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Many people use docker-compose for a situation like this. You can set up a docker-compose configuration file where you describe services that you would like to run. Each service defines a docker image. In your case, you could have mongodb, your express app and your angular app defined as services. Then, you can launch the whole stack with docker-compose up.



            A sample docker-compose config file would look something like:



            version: '2' # specify docker-compose version

            # Define the services/containers to be run
            services:
            angular: # name of the first service
            build: angular-client # specify the directory of the Dockerfile
            ports:
            - "4200:4200" # specify port forewarding

            express: #name of the second service
            build: express-server # specify the directory of the Dockerfile
            ports:
            - "3000:3000" #specify ports forewarding

            database: # name of the third service
            image: mongo # specify image to build container from
            ports:
            - "27017:27017" # specify port forewarding


            which comes from an article here: https://scotch.io/tutorials/create-a-mean-app-with-angular-2-and-docker-compose






            share|improve this answer



























              0














              Many people use docker-compose for a situation like this. You can set up a docker-compose configuration file where you describe services that you would like to run. Each service defines a docker image. In your case, you could have mongodb, your express app and your angular app defined as services. Then, you can launch the whole stack with docker-compose up.



              A sample docker-compose config file would look something like:



              version: '2' # specify docker-compose version

              # Define the services/containers to be run
              services:
              angular: # name of the first service
              build: angular-client # specify the directory of the Dockerfile
              ports:
              - "4200:4200" # specify port forewarding

              express: #name of the second service
              build: express-server # specify the directory of the Dockerfile
              ports:
              - "3000:3000" #specify ports forewarding

              database: # name of the third service
              image: mongo # specify image to build container from
              ports:
              - "27017:27017" # specify port forewarding


              which comes from an article here: https://scotch.io/tutorials/create-a-mean-app-with-angular-2-and-docker-compose






              share|improve this answer

























                0












                0








                0







                Many people use docker-compose for a situation like this. You can set up a docker-compose configuration file where you describe services that you would like to run. Each service defines a docker image. In your case, you could have mongodb, your express app and your angular app defined as services. Then, you can launch the whole stack with docker-compose up.



                A sample docker-compose config file would look something like:



                version: '2' # specify docker-compose version

                # Define the services/containers to be run
                services:
                angular: # name of the first service
                build: angular-client # specify the directory of the Dockerfile
                ports:
                - "4200:4200" # specify port forewarding

                express: #name of the second service
                build: express-server # specify the directory of the Dockerfile
                ports:
                - "3000:3000" #specify ports forewarding

                database: # name of the third service
                image: mongo # specify image to build container from
                ports:
                - "27017:27017" # specify port forewarding


                which comes from an article here: https://scotch.io/tutorials/create-a-mean-app-with-angular-2-and-docker-compose






                share|improve this answer













                Many people use docker-compose for a situation like this. You can set up a docker-compose configuration file where you describe services that you would like to run. Each service defines a docker image. In your case, you could have mongodb, your express app and your angular app defined as services. Then, you can launch the whole stack with docker-compose up.



                A sample docker-compose config file would look something like:



                version: '2' # specify docker-compose version

                # Define the services/containers to be run
                services:
                angular: # name of the first service
                build: angular-client # specify the directory of the Dockerfile
                ports:
                - "4200:4200" # specify port forewarding

                express: #name of the second service
                build: express-server # specify the directory of the Dockerfile
                ports:
                - "3000:3000" #specify ports forewarding

                database: # name of the third service
                image: mongo # specify image to build container from
                ports:
                - "27017:27017" # specify port forewarding


                which comes from an article here: https://scotch.io/tutorials/create-a-mean-app-with-angular-2-and-docker-compose







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 9 at 7:53









                djherudjheru

                1,87411013




                1,87411013





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073558%2fspawn-mongo-server-and-express-asynchronous-sever-setup-script-for-local-and-doc%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                    Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                    Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved