--- depends_on: - lint clone: git: image: "woodpeckerci/plugin-git:2.5.2" settings: depth: 9999 # wird benötigt um die Commits zählen zu können lfs: false partial: false steps: build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein image: "docker:27.1.1" volumes: - /var/run/docker.sock:/var/run/docker.sock commands: # 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 - | docker buildx build \ --no-cache \ --platform=linux/amd64 \ --push \ --tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_BRANCH} \ --tag registry.mgrote.net/${CI_REPO_NAME}:latest \ --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 . when: - event: [push, pull_request, cron, manual] evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' ... # händisch: # docker build . -t registry.mgrote.net/allzweckcontainer:latest # docker push registry.mgrote.net/allzweckcontainer:latest