CI workflow?
ci/woodpecker/push/woodpecker Pipeline failed Details
ci/woodpecker/manual/woodpecker Pipeline was successful Details

main
Patrick Cleavelin 2024-09-30 18:43:08 -05:00
parent 9f8f4b1e4f
commit 41e9166881
2 changed files with 15 additions and 1 deletions

11
.woodpecker.yml Normal file
View File

@ -0,0 +1,11 @@
steps:
build-and-push-docker-image:
when:
event: [push, tag]
image: docker
secrets: [ forgejo_token ]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- 'docker build -t git.spacegirl.nl/patrick/$CI_REPO:${CI_COMMIT_TAG} .'
- 'docker image push git.spacegirl.nl/patrick/${CI_REPO}:${CI_COMMIT_TAG}'

View File

@ -15,11 +15,14 @@ services:
ports:
- 8080:8080
volumes:
- ../blog-test:/app/blog-data
- blog-data:/app/blog-data
environment:
- PORT=8080
- BLOG_DIR=/app/blog-data
volumes:
blog-data:
# The commented out section below is an example of how to define a PostgreSQL
# database that your application can use. `depends_on` tells Docker Compose to
# start the database before your application. The `db-data` volume persists the