From a19073d1f0559221c5f2917a95bfcce023106b0d Mon Sep 17 00:00:00 2001 From: ruinivist Date: Tue, 26 May 2026 21:36:22 +0000 Subject: [PATCH] feat: publish to tag "latest" --- .github/workflows/publish-ghcr.yml | 4 +++- README.md | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-ghcr.yml b/.github/workflows/publish-ghcr.yml index 224f374..ec4e505 100644 --- a/.github/workflows/publish-ghcr.yml +++ b/.github/workflows/publish-ghcr.yml @@ -71,7 +71,9 @@ jobs: context: . file: ./Dockerfile push: true - tags: ${{ env.IMAGE_NAME }}:${{ env.VERSION }} + tags: | + ${{ env.IMAGE_NAME }}:${{ env.VERSION }} + ${{ env.IMAGE_NAME }}:latest labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.revision=${{ github.sha }} diff --git a/README.md b/README.md index 29697ef..c996eeb 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,17 @@ No auth to keep things simple - you either run in a private network or put it be > GPT 5.5 generated +## Pull from GHCR and run + +Images are published to: + +`ghcr.io/ruinivist/excalidraw-box:` + +```bash +docker pull ghcr.io/ruinivist/excalidraw-box:latest +docker run --rm -p 3000:3000 -v "$PWD/excali-box-data:/data" ghcr.io/ruinivist/excalidraw-box:latest +``` + ## Run locally ```bash