Files
sysmonstm/.woodpecker.yml
2026-01-02 21:38:12 -03:00

17 lines
400 B
YAML

# sysmonstm Pipeline
when:
- event: push
- event: manual
steps:
- name: build
image: docker
commands:
- echo === Building sysmonstm ===
- docker build -t registry:5000/sysmonstm:latest -f ctrl/standalone/Dockerfile ctrl/standalone/
- docker push registry:5000/sysmonstm:latest
- echo === Done ===
volumes:
- /var/run/docker.sock:/var/run/docker.sock