1
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/test/1 unknown status
ci/woodpecker/pr/test/2 unknown status
ci/woodpecker/pr/build Pipeline failed

1
This commit is contained in:
Stephan Schnabel 2025-06-19 16:50:32 +02:00
parent 7db99e0fa6
commit f433482dcd
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
6 changed files with 125 additions and 78 deletions

View file

@ -5,8 +5,58 @@ when:
branch: main
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
services:
- name: dockerd
image: kokuwaio/dockerd:dev
ports: [2375]
privileged: true
pull: true
steps:
info:
image: kokuwaio/docker-cli
commands: docker info
depends_on: []
environment:
DOCKER_HOST: tcp://dockerd:2375
info2:
image: kokuwaio/docker-cli
depends_on: []
commands: docker info
info3:
image: realworld/telnet
depends_on: []
commands: telnet dockerd 2375
info4:
image: arunvelsriram/utils
depends_on: []
commands: nslookup dockerd
info6:
image: bash
depends_on: []
commands: cat /etc/hosts
info-sleep:
image: bash
depends_on: []
commands: sleep 300
info6:
image: bash
depends_on: []
commands: env|sort
info5:
image: bash
depends_on: []
commands: env|sort
image:
image: kokuwaio/docker-cli
depends_on: []
commands: docker build . --tag=ghcr.io/inoa-io/inoa:snapshot
--cache-from=type=registry,ref=ghcr.io/inoa-io/inoa:cache
--build-arg=MAVEN_MIRROR_CENTRAL
--build-arg=YARN_NPM_REGISTRY_SERVER
--build-arg=YARN_UNSAFE_HTTP_WHITELIST
build:
image: kokuwaio/buildctl
settings: &settings

View file

@ -1,9 +1,8 @@
when:
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
event: pull_request
path: [.woodpecker/build.yaml, .woodpecker/test.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
depends_on: [build]
matrix:
@ -11,26 +10,27 @@ matrix:
labels:
platform: linux/${PLATFORM}
services:
- name: dockerd
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
ports: [2375]
steps:
pr:
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
commands: dockerd --version
when:
event: pull_request
info:
image: kokuwaio/docker-cli
commands: docker info
environment:
DOCKER_HOST: tcp://dockerd:2375
kokuwa.io: &version
image: registry.kokuwa.io/kokuwaio/dockerd
pull: true
commands: dockerd --version
when:
event: [manual, push]
branch: main
pull:
image: kokuwaio/docker-cli
commands: docker pull bash
environment:
DOCKER_HOST: tcp://dockerd:2375
docker.io:
image: docker.io/kokuwaio/dockerd
<<: *version
ghcr.io:
image: ghcr.io/kokuwaio/dockerd
<<: *version
run:
image: kokuwaio/docker-cli
commands: docker run --rm bash uname -a
environment:
DOCKER_HOST: tcp://dockerd:2375