17 lines
400 B
YAML
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
|