Christopher Kloß

Results 2 comments of Christopher Kloß

I was experiencing the same problem. Removing all unreachable hosts solved it. I had a host whose DNS was pointing to another IP than my Proxy, so LetsEncrypt could not...

Hi, I just worked arround this problem by setting the environment variable right before the build. in powershell: ```pwsh $env:GQL_HOST="http://host.docker.internal:3000/api/graphql" npm run build ``` or in Dockerfile: ```dockerfile ENV GQL_HOST=http://host.docker.internal:3000/api/graphql...