mastodon-docker-playground/.woodpecker.yml

27 lines
697 B
YAML
Raw Normal View History

2022-11-12 10:50:24 +00:00
pipeline:
login:
image: docker
commands:
- echo $REGISTRY_SECRET | docker login -u ariadne --password-stdin gitea.treehouse.systems
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2022-11-12 10:50:24 +00:00
when:
event: [push, tag]
secrets: [REGISTRY_SECRET]
build:
image: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2022-11-12 10:50:24 +00:00
commands:
- docker image build -f Dockerfile . -t gitea.treehouse.systems/treehouse/mastodon:latest
push:
image: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2022-11-12 10:50:24 +00:00
commands:
- docker image push --all-tags gitea.treehouse.systems/treehouse/mastodon
when:
event: [push, tag]