Add docker system prune
command
This will hopefully keep the system drive cleaned up so we don't run issues with not enough disk space.
This commit is contained in:
parent
af21546a43
commit
6c45be2dc4
1 changed files with 5 additions and 2 deletions
7
.github/workflows/publish_collab_image.yml
vendored
7
.github/workflows/publish_collab_image.yml
vendored
|
@ -11,7 +11,7 @@ env:
|
|||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish collab server image
|
||||
name: Publish collab server image
|
||||
runs-on:
|
||||
- self-hosted
|
||||
- deploy
|
||||
|
@ -22,6 +22,9 @@ jobs:
|
|||
- name: Sign into DigitalOcean docker registry
|
||||
run: doctl registry login
|
||||
|
||||
- name: Prune Docker system
|
||||
run: docker system prune
|
||||
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -41,6 +44,6 @@ jobs:
|
|||
|
||||
- name: Build docker image
|
||||
run: docker build . --tag registry.digitalocean.com/zed/collab:v${COLLAB_VERSION}
|
||||
|
||||
|
||||
- name: Publish docker image
|
||||
run: docker push registry.digitalocean.com/zed/collab:v${COLLAB_VERSION}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue