woodpecker-lxc-test/.woodpecker/.docker-host.yml
Maximilian Kratz f9de5c36be
All checks were successful
ci/woodpecker/push/docker-dind Pipeline was successful
ci/woodpecker/push/docker-host Pipeline was successful
ci/woodpecker/push/lxc Pipeline was successful
Adds a DIND CI config
Updates DIND to use a service container


Try again


Use a temporary Docker socket mount point on the host


Typo


/var/run instead


Try higher time out value
2023-02-06 09:14:54 +01:00

15 lines
324 B
YAML

platform: linux/amd64
# Define a temporary volume for communicating with the DIND service.
.dockervol: &dockervol
volumes:
- /var/run/docker.sock:/var/run/docker.sock
pipeline:
job-docker:
image: docker:dind
commands:
- docker run --rm hello-world
# Needs 'trusted' privileges
<<: *dockervol