Maybe changing to localhost because of passed docker socket is required
Build foundry vtt docker image and push to registry / docker (push) Failing after 9s

This commit is contained in:
2024-06-17 10:40:48 +02:00
parent 465b1fb1f1
commit da96544ee9
@@ -19,14 +19,14 @@ jobs:
with: with:
buildkitd-flags: --debug buildkitd-flags: --debug
config-inline: | config-inline: |
[registry."dockerregistry:5000"] [registry."localhost: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: dockerregistry:5000 registry: localhost:5000
username: ${{ secrets.REGISTRY_USERNAME }} username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
- -