[Fixed]-Browserify doesn't works in Docker container

1👍

The problem is that browserify doesn’t running in the same time, for these reason is not possible get access to it.

So expose the ports for browserify:

ports:
  - "3000:3000"
  - "3001:3001"
  - "8000:8000"

And execute npm:
docker exec -it uzman_web_1 bash -c "cd /code/uzman/static; exec npm start"

It’s all.

Leave a comment