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:
Joseph T. Lyons 2023-08-23 14:54:39 -04:00
parent af21546a43
commit 6c45be2dc4

View File

@ -11,7 +11,7 @@ env:
jobs: jobs:
publish: publish:
name: Publish collab server image name: Publish collab server image
runs-on: runs-on:
- self-hosted - self-hosted
- deploy - deploy
@ -22,6 +22,9 @@ jobs:
- name: Sign into DigitalOcean docker registry - name: Sign into DigitalOcean docker registry
run: doctl registry login run: doctl registry login
- name: Prune Docker system
run: docker system prune
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
@ -41,6 +44,6 @@ jobs:
- name: Build docker image - name: Build docker image
run: docker build . --tag registry.digitalocean.com/zed/collab:v${COLLAB_VERSION} run: docker build . --tag registry.digitalocean.com/zed/collab:v${COLLAB_VERSION}
- name: Publish docker image - name: Publish docker image
run: docker push registry.digitalocean.com/zed/collab:v${COLLAB_VERSION} run: docker push registry.digitalocean.com/zed/collab:v${COLLAB_VERSION}