File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
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'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ networks:
66 - subnet : 172.28.0.0/16
77services :
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
You can’t perform that action at this time.
0 commit comments