2023-06-03 10:53:17 -03:00
|
|
|
# https://jpetazzo.github.io/2015/09/03/do-not-use-docker-in-docker-for-ci/
|
|
|
|
# https://woodpecker-ci.org/docs/usage/volumes
|
|
|
|
|
|
|
|
pipeline:
|
|
|
|
docker-go:
|
|
|
|
image: docker
|
|
|
|
commands:
|
|
|
|
- cd .woodpecker/docker
|
|
|
|
- docker build -f go.dockerfile -t test-image .
|
2023-06-03 10:57:09 -03:00
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|