From 1a58c06a6fb7e467f03ba449e23a0fc2aed799bd Mon Sep 17 00:00:00 2001 From: Phil Date: Sun, 7 Apr 2024 12:41:24 +0200 Subject: [PATCH] .woodpecker.yml aktualisiert --- .drone.yml | 40 ---------------------------------------- .woodpecker.yml | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 40 deletions(-) delete mode 100644 .drone.yml create mode 100644 .woodpecker.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index fc66914..0000000 --- a/.drone.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- -kind: pipeline -name: Build-latest - -steps: -- name: Build-latest-tag - image: docker:dind - volumes: - - name: dockersock - path: /var/run - environment: - DOCKER_PASSWORD: - from_secret: DOCKER_PASSWORD - commands: - - sleep 15 - - docker context create build - - docker buildx create build --use - - echo $DOCKER_PASSWORD | docker login --username Phil --password-stdin git.hackmi.ch - - docker buildx build - --platform linux/amd64 - --no-cache - --push - --tag git.hackmi.ch/hackmi.ch/services:latest - . - -services: -- name: docker - image: docker:dind - privileged: true - volumes: - - name: dockersock - path: /var/run - -volumes: -- name: dockersock - temp: {} - -when: - branch: - - main \ No newline at end of file diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..9346842 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,21 @@ +steps: + - name: Publish + image: woodpeckerci/plugin-docker-buildx:3 + environment: + - DOCKER_HOST=tcp://docker:2376 + settings: + platforms: linux/amd64 + repo: git.hackmi.ch/hackmi.ch/services + registry: git.hackmi.ch + tags: latest + username: + from_secret: reg-user + password: + from_secret: reg-pass + +services: + docker: + image: docker:24-dind + commands: + - dockerd --tls=false --host=tcp://0.0.0.0:2376 + privileged: true \ No newline at end of file