diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..48771e6 --- /dev/null +++ b/.woodpecker.yml @@ -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}' diff --git a/compose.yaml b/compose.yaml index f068253..e6532cd 100644 --- a/compose.yaml +++ b/compose.yaml @@ -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