Debug woodpecker
This commit is contained in:
parent
30d1deb18b
commit
da3872db6e
1 changed files with 5 additions and 3 deletions
|
|
@ -2,15 +2,17 @@ when:
|
||||||
event: tag
|
event: tag
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
build-image:
|
build:
|
||||||
image: docker
|
image: docker
|
||||||
|
environment:
|
||||||
|
- DOCKER_BUILDKIT=1
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
commands:
|
commands:
|
||||||
- echo "⚙️ Building Docker image for ${CI_COMMIT_TAG}"
|
- echo "⚙️ Building Docker image for ${CI_COMMIT_TAG}"
|
||||||
- docker build -t codeberg.org/${CI_REPO}:${CI_COMMIT_TAG} .
|
- docker build -f docker/Dockerfile -t codeberg.org/${CI_REPO}:${CI_COMMIT_TAG} .
|
||||||
|
|
||||||
push-image:
|
push:
|
||||||
image: docker
|
image: docker
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue