notgiven688 / webminerpool

Complete sources for a monero webminer.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

newcharacteryigit opened this issue · 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?

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

docker-compose example:

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