jarvis/.woodpecker.yml

15 lines
328 B
YAML
Raw Permalink Normal View History

2026-01-09 00:24:04 +02:00
when:
branch: main
event: push
steps:
- name: build
image: docker:27-cli
environment:
- DOCKER_HOST=unix:///var/run/docker.sock
commands:
- docker build -t 10.0.0.3:5000/jarvis:latest .
- docker push 10.0.0.3:5000/jarvis:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock