Skip to content

Commit

Permalink
docker: Update docker images to point to the new repo URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBassem committed May 19, 2024
1 parent 1506ff0 commit 6839289
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
target: ${{ matrix.package }}
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:latest
cache-from: type=registry,ref=ghcr.io/mohamedbassem/hoarder-build-cache:${{ matrix.package }}
cache-to: type=registry,mode=max,ref=ghcr.io/mohamedbassem/hoarder-build-cache:${{ matrix.package }}
tags: ghcr.io/hoarder-app/hoarder-${{ matrix.package }}:latest,ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:latest
cache-from: type=registry,ref=ghcr.io/hoarder-app/hoarder-build-cache:${{ matrix.package }}
cache-to: type=registry,mode=max,ref=ghcr.io/hoarder-app/hoarder-build-cache:${{ matrix.package }}

- name: Build ${{ matrix.package }} (release)
uses: docker/build-push-action@v5
Expand All @@ -51,6 +51,6 @@ jobs:
target: ${{ matrix.package }}
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:${{ github.event.release.name }},ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:release
cache-from: type=registry,ref=ghcr.io/mohamedbassem/hoarder-build-cache:${{ matrix.package }}
cache-to: type=registry,mode=max,ref=ghcr.io/mohamedbassem/hoarder-build-cache:${{ matrix.package }}
tags: ghcr.io/hoarder-app/hoarder-${{ matrix.package }}:${{ github.event.release.name }},ghcr.io/hoarder-app/hoarder-${{ matrix.package }}:release,ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:${{ github.event.release.name }},ghcr.io/mohamedbassem/hoarder-${{ matrix.package }}:release
cache-from: type=registry,ref=ghcr.io/hoarder-app/hoarder-build-cache:${{ matrix.package }}
cache-to: type=registry,mode=max,ref=ghcr.io/hoarder-app/hoarder-build-cache:${{ matrix.package }}
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
web:
image: ghcr.io/mohamedbassem/hoarder-web:${HOARDER_VERSION:-release}
image: ghcr.io/hoarder-app/hoarder-web:${HOARDER_VERSION:-release}
restart: unless-stopped
volumes:
- data:/data
Expand Down Expand Up @@ -38,7 +38,7 @@ services:
volumes:
- meilisearch:/meili_data
workers:
image: ghcr.io/mohamedbassem/hoarder-workers:${HOARDER_VERSION:-release}
image: ghcr.io/hoarder-app/hoarder-workers:${HOARDER_VERSION:-release}
restart: unless-stopped
volumes:
- data:/data
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/09-command-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ npm install -g @hoarderapp/cli
## Installation (Docker)

```
docker run --rm ghcr.io/mohamedbassem/hoarder-cli:release --help
docker run --rm ghcr.io/hoarder-app/hoarder-cli:release --help
```

## Usage
Expand Down

0 comments on commit 6839289

Please sign in to comment.