feat(ci): migrate to Forgejo Docker registry

Updates CI/CD workflow to trigger on tag pushes and use Forgejo credentials
Renames login and push steps to reflect the new container registry
Modifies documentation and compose file to point to the updated image URL
This commit is contained in:
Kumi 2025-02-27 14:19:32 +01:00
parent 076869592c
commit b3462039a2
No known key found for this signature in database
GPG key ID: ECBCC9082395383F
3 changed files with 8 additions and 4 deletions

View file

@ -1,7 +1,9 @@
name: Docker CI/CD name: Docker CI/CD
on: on:
push push:
tags:
- "*"
jobs: jobs:
docker: docker:
@ -17,13 +19,13 @@ jobs:
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub - name: Login to Forgejo
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: git.private.coffee registry: git.private.coffee
username: ${{ secrets.FORGEJO_USER }} username: ${{ secrets.FORGEJO_USER }}
password: ${{ secrets.FORGEJO_TOKEN }} password: ${{ secrets.FORGEJO_TOKEN }}
- name: Build and push to Docker Hub - name: Build and push to Forgejo
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
push: true push: true

View file

@ -73,6 +73,8 @@ wikimore
### Docker ### Docker
__Notice:__ The Docker image is now hosted on the [Private.coffee Git](https://git.private.coffee/PrivateCoffee/-/packages/container/wikimore/latest). Please update your Docker Compose file to use `git.private.coffee/privatecoffee/wikimore:latest` instead of `privatecoffee/wikimore:latest`. The Docker Hub deployment may be removed in the future.
For your convenience, we also provide a Docker image. Note however that this is _not_ the recommended way to run Wikimore. For your convenience, we also provide a Docker image. Note however that this is _not_ the recommended way to run Wikimore.
You can use the bundled `docker-compose-example.yml` file to run Wikimore with Docker Compose. You can use the bundled `docker-compose-example.yml` file to run Wikimore with Docker Compose.

View file

@ -2,7 +2,7 @@ services:
wikimore-app: wikimore-app:
container_name: wikimore container_name: wikimore
restart: unless-stopped restart: unless-stopped
image: privatecoffee/wikimore:latest image: git.private.coffee/privatecoffee/wikimore:latest
ports: ports:
- "127.0.0.1:8109:8109" - "127.0.0.1:8109:8109"
security_opt: security_opt: