allzweckcontainer/.woodpecker/build.yml

42 lines
1.4 KiB
YAML
Raw Normal View History

2022-08-06 11:07:52 +02:00
---
depends_on:
- lint
2024-02-07 21:17:42 +01:00
clone:
git:
image: "woodpeckerci/plugin-git:2.5.2"
2024-02-07 21:17:42 +01:00
settings:
depth: 9999 # wird benötigt um die Commits zählen zu können
lfs: false
partial: false
2022-08-06 11:07:52 +02:00
steps:
2024-02-07 21:17:42 +01:00
build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein
image: "docker:27.1.2"
2024-02-07 21:17:42 +01:00
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
2024-02-17 15:31:54 +01:00
# https://unix.stackexchange.com/questions/748633/error-multiple-platforms-feature-is-currently-not-supported-for-docker-driver
- docker buildx create --use --platform=linux/amd64 --name multi-platform-builder
- docker buildx inspect --bootstrap
2024-02-07 21:17:42 +01:00
- |
docker buildx build \
--no-cache \
2024-02-17 15:31:54 +01:00
--platform=linux/amd64 \
--push \
--tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_BRANCH} \
--tag registry.mgrote.net/${CI_REPO_NAME}:latest \
2024-02-07 21:17:42 +01:00
--label org.opencontainers.image.url=$CI_REPO_URL \
--label org.opencontainers.image.source=$CI_REPO_URL \
--label org.opencontainers.image.revision=$CI_COMMIT_SHA \
--label org.opencontainers.image.created=$DATE \
--file Dockerfile .
2023-11-03 19:13:36 +01:00
when:
- event: [push, pull_request, cron, manual]
2024-05-06 23:46:01 +02:00
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-02-06 20:19:47 +01:00
...
2024-07-26 00:35:53 +02:00
# händisch:
# docker build . -t registry.mgrote.net/allzweckcontainer:latest
# docker push registry.mgrote.net/allzweckcontainer:latest