You can run Bludit as a Docker container.
Find the deployment and service for Kubernetes on the directory kubernetes
.
$ docker run --name bludit -p 8000:80 -d bludit/docker:latest
To get access go with your browser to http://localhost:8000
mkdir ~/bludit
docker run --name bludit \
-p 8000:80 \
-v ~/bludit:/usr/share/nginx/html/bl-content \
-d bludit/docker:latest
To get access go with your browser to http://localhost:8000
$ docker stop bludit
$ docker rm bludit
$ docker rmi bludit/docker:latest
Run Bludit on K8s.
$ kubectl apply -f kubernetes/deployment.yml
$ kubectl apply -f kubernetes/service.yml