webminerpool
webminerpool copied to clipboard
./entrypoint.sh: line 7: DOMAIN: unbound variable
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: ""
...