mirror of
https://github.com/lemeow125/Notes.git
synced 2025-04-27 18:21:17 +08:00
Add build step for Docker container
This commit is contained in:
parent
2ca1dc97f0
commit
9fcdac56cb
3 changed files with 46 additions and 0 deletions
19
.woodpecker/.build.yml
Normal file
19
.woodpecker/.build.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
steps:
|
||||
- name: build
|
||||
image: node:18-alpine
|
||||
when:
|
||||
- branch: master
|
||||
event: push
|
||||
commands:
|
||||
- docker build -t "$REGISTRY_IMAGE_TAG" .
|
||||
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
|
||||
- docker push "$FORGEJO_REGISTRY_URL"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
secrets:
|
||||
[
|
||||
FORGEJO_REGISTRY_URL,
|
||||
FORGEJO_REGISTRY_USERNAME,
|
||||
FORGEJO_REGISTRY_PASSWORD,
|
||||
REGISTRY_IMAGE_TAG,
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue