Vue.js app on a docker container with hot reload









up vote
2
down vote

favorite
1












I have a signifiant delay and high cpu usage when running my vue.js app on docker instance.



This is my docker setup



docker-compose.yml



version: '2'
services:

app:
build:
context: ./
dockerfile: docker/app.docker
working_dir: /usr/src/app
volumes:
- ~/.composer-docker/cache:/root/.composer/cache:delegated
- ./:/usr/src/app
stdin_open: true
tty: true
environment:
- HOST=0.0.0.0
- CHOKIDAR_USEPOLLING=true
ports:
- 8080:8080


app.docker



# base image
FROM node:8.10.0-alpine

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
COPY package*.json ./

RUN npm install

# Bundle app source
COPY . .

EXPOSE 8080

CMD [ "npm", "run", "serve"]


this setup works fine when i type docker-compose up -d and my app is loading in http://localhost:8080/
but hot reloading happens after 10 seconds , then 15 seconds like wise it keeps increasing and my laptop cpu usage gets 60% and still increasing



i am on a mac book pro with 16 gb ram, and for docker i have enabled 4 cpu's and 6 gb ram.



how can this issue be resolved?










share|improve this question

















  • 1




    did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
    – Azraar Azward
    Nov 11 at 8:30














up vote
2
down vote

favorite
1












I have a signifiant delay and high cpu usage when running my vue.js app on docker instance.



This is my docker setup



docker-compose.yml



version: '2'
services:

app:
build:
context: ./
dockerfile: docker/app.docker
working_dir: /usr/src/app
volumes:
- ~/.composer-docker/cache:/root/.composer/cache:delegated
- ./:/usr/src/app
stdin_open: true
tty: true
environment:
- HOST=0.0.0.0
- CHOKIDAR_USEPOLLING=true
ports:
- 8080:8080


app.docker



# base image
FROM node:8.10.0-alpine

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
COPY package*.json ./

RUN npm install

# Bundle app source
COPY . .

EXPOSE 8080

CMD [ "npm", "run", "serve"]


this setup works fine when i type docker-compose up -d and my app is loading in http://localhost:8080/
but hot reloading happens after 10 seconds , then 15 seconds like wise it keeps increasing and my laptop cpu usage gets 60% and still increasing



i am on a mac book pro with 16 gb ram, and for docker i have enabled 4 cpu's and 6 gb ram.



how can this issue be resolved?










share|improve this question

















  • 1




    did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
    – Azraar Azward
    Nov 11 at 8:30












up vote
2
down vote

favorite
1









up vote
2
down vote

favorite
1






1





I have a signifiant delay and high cpu usage when running my vue.js app on docker instance.



This is my docker setup



docker-compose.yml



version: '2'
services:

app:
build:
context: ./
dockerfile: docker/app.docker
working_dir: /usr/src/app
volumes:
- ~/.composer-docker/cache:/root/.composer/cache:delegated
- ./:/usr/src/app
stdin_open: true
tty: true
environment:
- HOST=0.0.0.0
- CHOKIDAR_USEPOLLING=true
ports:
- 8080:8080


app.docker



# base image
FROM node:8.10.0-alpine

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
COPY package*.json ./

RUN npm install

# Bundle app source
COPY . .

EXPOSE 8080

CMD [ "npm", "run", "serve"]


this setup works fine when i type docker-compose up -d and my app is loading in http://localhost:8080/
but hot reloading happens after 10 seconds , then 15 seconds like wise it keeps increasing and my laptop cpu usage gets 60% and still increasing



i am on a mac book pro with 16 gb ram, and for docker i have enabled 4 cpu's and 6 gb ram.



how can this issue be resolved?










share|improve this question













I have a signifiant delay and high cpu usage when running my vue.js app on docker instance.



This is my docker setup



docker-compose.yml



version: '2'
services:

app:
build:
context: ./
dockerfile: docker/app.docker
working_dir: /usr/src/app
volumes:
- ~/.composer-docker/cache:/root/.composer/cache:delegated
- ./:/usr/src/app
stdin_open: true
tty: true
environment:
- HOST=0.0.0.0
- CHOKIDAR_USEPOLLING=true
ports:
- 8080:8080


app.docker



# base image
FROM node:8.10.0-alpine

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
COPY package*.json ./

RUN npm install

# Bundle app source
COPY . .

EXPOSE 8080

CMD [ "npm", "run", "serve"]


this setup works fine when i type docker-compose up -d and my app is loading in http://localhost:8080/
but hot reloading happens after 10 seconds , then 15 seconds like wise it keeps increasing and my laptop cpu usage gets 60% and still increasing



i am on a mac book pro with 16 gb ram, and for docker i have enabled 4 cpu's and 6 gb ram.



how can this issue be resolved?







docker vue.js vuejs2 docker-compose hot-reload






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 6:03









dev1234

2,37783683




2,37783683







  • 1




    did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
    – Azraar Azward
    Nov 11 at 8:30












  • 1




    did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
    – Azraar Azward
    Nov 11 at 8:30







1




1




did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
– Azraar Azward
Nov 11 at 8:30




did you try to set intervals with CHOKIDAR_INTERVAL=1000 ?
– Azraar Azward
Nov 11 at 8:30












1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










Add one of the delegated or cached options to the volume mounting your app directory. I've experienced significant performance increases using cached in particular:



volumes:
- ~/.composer-docker/cache:/root/.composer/cache:delegated
- ./:/usr/src/app:cached





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',
    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%2f53246267%2fvue-js-app-on-a-docker-container-with-hot-reload%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








    up vote
    2
    down vote



    accepted










    Add one of the delegated or cached options to the volume mounting your app directory. I've experienced significant performance increases using cached in particular:



    volumes:
    - ~/.composer-docker/cache:/root/.composer/cache:delegated
    - ./:/usr/src/app:cached





    share|improve this answer
























      up vote
      2
      down vote



      accepted










      Add one of the delegated or cached options to the volume mounting your app directory. I've experienced significant performance increases using cached in particular:



      volumes:
      - ~/.composer-docker/cache:/root/.composer/cache:delegated
      - ./:/usr/src/app:cached





      share|improve this answer






















        up vote
        2
        down vote



        accepted







        up vote
        2
        down vote



        accepted






        Add one of the delegated or cached options to the volume mounting your app directory. I've experienced significant performance increases using cached in particular:



        volumes:
        - ~/.composer-docker/cache:/root/.composer/cache:delegated
        - ./:/usr/src/app:cached





        share|improve this answer












        Add one of the delegated or cached options to the volume mounting your app directory. I've experienced significant performance increases using cached in particular:



        volumes:
        - ~/.composer-docker/cache:/root/.composer/cache:delegated
        - ./:/usr/src/app:cached






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 11 at 6:25









        DigitalDrifter

        6,0712422




        6,0712422



























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f53246267%2fvue-js-app-on-a-docker-container-with-hot-reload%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

            Top Tejano songwriter Luis Silva dead of heart attack at 64

            ReactJS Fetched API data displays live - need Data displayed static

            政党