CI workflow?
parent
9f8f4b1e4f
commit
41e9166881
|
@ -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}'
|
|
@ -15,11 +15,14 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
volumes:
|
volumes:
|
||||||
- ../blog-test:/app/blog-data
|
- blog-data:/app/blog-data
|
||||||
environment:
|
environment:
|
||||||
- PORT=8080
|
- PORT=8080
|
||||||
- BLOG_DIR=/app/blog-data
|
- BLOG_DIR=/app/blog-data
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
blog-data:
|
||||||
|
|
||||||
# The commented out section below is an example of how to define a PostgreSQL
|
# 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
|
# database that your application can use. `depends_on` tells Docker Compose to
|
||||||
# start the database before your application. The `db-data` volume persists the
|
# start the database before your application. The `db-data` volume persists the
|
||||||
|
|
Loading…
Reference in New Issue