Skip to content

Commit 8da3a4a

Browse files
committed
8. try?
1 parent 723fc04 commit 8da3a4a

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
# registry to push to. Change to docker.io if you prefer.
20-
REGISTRY: ghcr.io
20+
REGISTRY: docker.io
2121
# owner that will own the pushed images. Defaults to repository owner.
22-
OWNER: ${{ github.repository_owner }}
22+
OWNER: mrminede
2323
# short commit SHA tag
2424
COMMIT_SHORT: ${{ github.sha }}
2525
steps:
@@ -41,10 +41,8 @@ jobs:
4141
- name: Login to container registry
4242
uses: docker/login-action@v2
4343
with:
44-
registry: ${{ env.REGISTRY }}
45-
username: ${{ github.actor }}
46-
# For GHCR the GITHUB_TOKEN usually works. For Docker Hub use a secret (DOCKERHUB_USERNAME/DOCKERHUB_TOKEN).
47-
password: ${{ secrets.GITHUB_TOKEN }}
44+
username: ${{ secrets.DOCKERHUB_USERNAME }}
45+
password: ${{ secrets.DOCKERHUB_TOKEN }}
4846

4947
- name: Build all compose services
5048
# uses the Docker Compose CLI shipped with Docker; this runs 'docker compose build'

docker/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ networks:
66
- subnet: 172.28.0.0/16
77
services:
88
backend:
9-
image: ghcr.io/mminl-de/interscore-backend
9+
image: mrminede/interscore-backend
1010
build:
1111
context: ..
1212
dockerfile: docker/backend/Dockerfile
@@ -32,7 +32,7 @@ services:
3232
"
3333
3434
http-server:
35-
image: ghcr.io/mminl-de/interscore-http-server
35+
image: mrminede/interscore-http-server
3636
build:
3737
context: ..
3838
dockerfile: docker/http-server/Dockerfile
@@ -53,7 +53,7 @@ services:
5353
restart: unless-stopped
5454

5555
obs:
56-
image: ghcr.io/mminl-de/obs
56+
image: mrminede/obs
5757
build:
5858
context: ..
5959
dockerfile: docker/obs/Dockerfile

0 commit comments

Comments
 (0)