k8s-pulse/docker-compose.yml

14 lines
313 B
YAML
Raw Permalink Normal View History

2026-07-24 11:17:10 +00:00
services:
k8s-pulse:
build:
context: .
dockerfile: Dockerfile
container_name: k8s-pulse
ports:
- "5000:5000"
environment:
- KUBECONFIG=/home/nonroot/.kube/config
2026-07-24 11:17:10 +00:00
volumes:
- ${KUBECONFIG:-~/.kube/config}:/home/nonroot/.kube/config:ro
2026-07-24 11:17:10 +00:00
restart: unless-stopped