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:
buildkitd-flags: --debug
config-inline: |
[registry."localhost:5000"]
[registry."127.0.0.1:5000"]
http = true
insecure = true
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: localhost:5000
registry: 127.0.0.1:5000
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASS }}
-
@@ -35,4 +35,4 @@ jobs:
with:
context: .
push: true
tags: localhost:5000/foundryvtt-docker:latest
tags: 127.0.0.1:5000/foundryvtt-docker:latest