Switch to local IP instead localhost
Build foundry vtt docker image and push to registry / docker (push) Failing after 16s

Might fix a connection refusal in trying to push to the registry.
This commit is contained in:
2024-06-17 11:55:05 +02:00
parent 5701299e2e
commit f41353f2cc
@@ -19,14 +19,14 @@ jobs:
with: with:
buildkitd-flags: --debug buildkitd-flags: --debug
config-inline: | config-inline: |
[registry."localhost:5000"] [registry."127.0.0.1:5000"]
http = true http = true
insecure = true insecure = true
- -
name: Login to Docker Hub name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: localhost:5000 registry: 127.0.0.1:5000
username: ${{ secrets.REGISTRY_USERNAME }} username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
- -
@@ -35,4 +35,4 @@ jobs:
with: with:
context: . context: .
push: true push: true
tags: localhost:5000/foundryvtt-docker:latest tags: 127.0.0.1:5000/foundryvtt-docker:latest