Feat: chakra ui
This commit is contained in:
19
.woodpecker/pipeline.yml
Normal file
19
.woodpecker/pipeline.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
steps:
|
||||
- name: build
|
||||
image: docker:latest
|
||||
commands:
|
||||
- docker build -t nwblog:latest .
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
when:
|
||||
- branch: [master, deploy]
|
||||
- event: [push, manual]
|
||||
- name: deploy
|
||||
image: docker:latest
|
||||
commands:
|
||||
- docker run -d -p 127.0.0.1:25010:3000 --restart always --name nwblog nwblog:latest
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
when:
|
||||
- branch: deploy
|
||||
- event: manual
|
||||
Reference in New Issue
Block a user