webminerpool icon indicating copy to clipboard operation
webminerpool copied to clipboard

./entrypoint.sh: line 7: DOMAIN: unbound variable

Open newcharacteryigit opened this issue 2 years ago • 1 comments

When I try to deploy my app to Heroku I'm getting "./entrypoint.sh: line 7: DOMAIN: unbound variable" error and the app not starting.

What can I do for solve this error?

newcharacteryigit avatar Aug 06 '21 08:08 newcharacteryigit

I solved it by supplying an empty string to the DOMAIN envvar.

docker-compose example:

version: '3'
services:
  webminerpool:
    ...
    environment:
      DOMAIN: ""
...

MexHigh avatar May 05 '22 17:05 MexHigh