A Docker image to work with vuepress
3.0K
Docker image for VUEPRESS to use as build container.
Image on dockerhub: https://hub.docker.com/r/crowdcode/vuepress/
Project on Github: https://github.com/crowdcode-de/docker-vuepress-cli
Currently, this image uses node v11.7.0 (npm 6.5.0), vue-cli 3.3.0, vuepress and Debian stretch as base distribution.
Create a markdown file:
echo '# Hello VuePress' > README.md
Start vuepress development server:
docker run -it --rm -p 8080:8080 -p 8081:8081 -v "$PWD":/workspace crowdcode/vuepress vuepress dev
Start writing your content and have a look on http://localhost:8080. The Port 8081 is used for hot reload after you changed a file.
Build to static files with:
docker run -it --rm -v "$PWD":/workspace crowdcode/vuepress vuepress build
Content type
Image
Digest
Size
396.2 MB
Last updated
over 7 years ago
docker pull crowdcode/vuepress-cli