diff --git a/.gitea/workflows/build-docker-image-and-push.yaml b/.gitea/workflows/build-docker-image-and-push.yaml index 2eceaec..2599e0a 100644 --- a/.gitea/workflows/build-docker-image-and-push.yaml +++ b/.gitea/workflows/build-docker-image-and-push.yaml @@ -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 \ No newline at end of file + tags: 127.0.0.1:5000/foundryvtt-docker:latest \ No newline at end of file