DashMachine icon indicating copy to clipboard operation
DashMachine copied to clipboard

I can't make it run on Ubuntu Server 20.04 - on rpi

Open ghost opened this issue 4 years ago • 4 comments

I made it run on Ubuntu Server 18.04, but can't make it run on Ubuntu Server 20.04, on rpi - after staring container it says, that dash machine was started, but from docker ps -a I can see, that it is restarting over and over again.

ghost avatar Jan 13 '21 14:01 ghost

is your ubuntu 64bits? if true, you can build the docker image with this pull request to solve: https://github.com/rmountjoy92/DashMachine/pull/175

ralexsander avatar Jan 15 '21 20:01 ralexsander

Can you show your container log for the machine?

Utkarsh-vishnoi avatar Aug 09 '21 16:08 Utkarsh-vishnoi

It seems that the official Docker image on Docker hub only supports x64 systems. Therefore it cannot start on a Pi.

Octoate avatar Aug 18 '21 11:08 Octoate

Well the x86 image is also broken with gunicorn emitting [CRITICAL] WORKER TIMEOUT every 30s.

I could make it work by increasing gunicorn timeout to 90 or 120 seconds.

I use docker-compose. To change the command:

command: "gunicorn --bind 0.0.0.0:5000 -t 120 wsgi:app"

eric-saintetienne avatar Aug 07 '22 01:08 eric-saintetienne