839 B
839 B
thegolem.cz - Landing page
Dev
# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generate
Docker
Login to golem docker registry
docker login registry.thegolem.cz
Build the image (use actual version)
docker build . -t golem/landing-page:1.1.0 -t golem/landing-page:latest
Tag the image (use actual version)
docker tag golem/landing-page:latest registry.thegolem.cz/golem/landing-page:latest
docker tag golem/landing-page:1.1.0 registry.thegolem.cz/golem/landing-page:1.1.0
Push the image to registry
docker push registry.thegolem.cz/golem/landing-page:latest
docker push registry.thegolem.cz/golem/landing-page:1.1.0