Skip to content

Latest commit

Β 

History

History
30 lines (23 loc) Β· 1012 Bytes

File metadata and controls

30 lines (23 loc) Β· 1012 Bytes

OpenGitOps Website

OpenGitOps logo icon color Globe with Meridians emoji Unicode 1F310. OpenMoji CC BY-SA 4.0

Code for CNCF OpenGitOps project website.

πŸ‘©β€πŸ’» Local Development.

# if you like npm 
npm i
npm start

# Or if you like yarn
yarn install
yarn start

Docker setup

# Build container image from local filesystem with default Node version
docker build --no-cache -t website:<tag> -f Containerfile .

# Build container image from local filesystem with Node version as build arg
docker build --build-arg NODE_VERSION=19 --no-cache -t website:<tag> -f Containerfile .

# Run container image with mapping port 80 on your computer
docker run -dit -p 8000:8000 website:<tag>