k8s-pulse/docker-compose.yml

16 lines
351 B
YAML
Raw Normal View History

2026-07-24 11:17:10 +00:00
services:
k8s-pulse:
build:
context: .
dockerfile: Dockerfile
container_name: k8s-pulse
2026-08-02 00:59:41 +00:00
user: "${UID:-1000}:${GID:-1000}"
2026-07-24 11:17:10 +00:00
ports:
- "5000:5000"
environment:
2026-08-02 00:59:41 +00:00
- KUBECONFIG=/tmp/config
- HOME=/tmp
2026-07-24 11:17:10 +00:00
volumes:
2026-08-02 00:59:41 +00:00
- ${KUBECONFIG:-/home/builder/.kube/config}:/tmp/config:ro
2026-07-24 11:17:10 +00:00
restart: unless-stopped