Skip to content

Commit

Permalink
Moved docker images to ghcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
proofrock committed Dec 16, 2024
1 parent de82ce8 commit 87c8921
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "*"

env:
REGISTRY_IMAGE: germanorizzo/seif
REGISTRY_IMAGE: ghcr.io/proofrock/seif
# REGISTRY_IMAGE: germanorizzo/seif-test

jobs:
Expand Down Expand Up @@ -180,11 +180,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}

- name: Build and push by digest
id: build
Expand Down Expand Up @@ -230,11 +231,12 @@ jobs:
with:
images: ${{ env.REGISTRY_IMAGE }}

- name: Login to Docker Hub
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}

- name: Create manifest list and push
working-directory: /tmp/digests
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@

Simple install, with docker:

`docker run --rm -i -p 12321:12321 -v seif:/data germanorizzo/seif:latest`
`docker run --rm -i -p 12321:12321 -v seif:/data ghcr.io/proofrock/seif:latest`

Docker images for AMD64 and AARCH64 are in the 'Packages' section of this repository.

0 comments on commit 87c8921

Please sign in to comment.