I used the following command to run the container :
docker run -p 3333:3333 -d maill/node-web-app
Here is the result of docker ps :
<
To go along with johnharris85's answer, add the following to your package.json
:
From nuxt documentation on "How to edit HOST and PORT?"
You can configure the PORT with 3 different ways:
- ...
- ...
- Via a nuxt config in the package.json:
Inside your package.json:
"config": { "nuxt": { "host": "0.0.0.0", "port": "3333" } }, "scripts": { "dev": "nuxt" }