notgiven688 / webminerpool

Complete sources for a monero webminer.
262 stars 174 forks source link

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

Open newcharacteryigit opened 2 years ago

newcharacteryigit commented 2 years ago

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?

MexHigh commented 2 years ago

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

docker-compose example:

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