DEV Community

Discussion on: Starting up a new Vue 3 project with Vite and Docker

Collapse
 
manojap profile image
MANOJ AP

I can't access the localhost

Collapse
 
shashinvision profile image
Felipe M.

Put this on your DockerFile

CMD [ "npm", "run", "dev", "--", "--host", "0.0.0.0" ]

Collapse
 
netchose profile image
netchose

in docker file i've replaced "expose" by "ports" and it works

ports:
- "8000:8000"