Route registry traffic through proxy domain
Some checks failed
Automated Container Build / build-and-push (push) Failing after 5s

This commit is contained in:
Elijah 2026-05-20 18:28:52 -07:00
parent 9d7e1637d3
commit 84fae59d4c

View file

@ -14,9 +14,9 @@ jobs:
- name: Log into Local Registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login 172.17.0.1:3030 -u "${{ gitea.actor }}" --password-stdin
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.elijahkuntz.com -u "${{ gitea.actor }}" --password-stdin
- name: Build and Push Image
run: |
docker build -t 172.17.0.1:3030/${{ gitea.actor }}/${{ github.event.repository.name }}:latest .
docker push 172.17.0.1:3030/${{ gitea.actor }}/${{ github.event.repository.name }}:latest
docker build -t git.elijahkuntz.com/${{ gitea.actor }}/${{ github.event.repository.name }}:latest .
docker push git.elijahkuntz.com/${{ gitea.actor }}/${{ github.event.repository.name }}:latest