rmountjoy92 / DashMachine

Another web application bookmark dashboard, with fun features.
GNU General Public License v3.0
1.24k stars 119 forks source link

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

Open ghost opened 3 years ago

ghost commented 3 years ago

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.

ralexsander commented 3 years ago

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

Utkarsh-vishnoi commented 3 years ago

Can you show your container log for the machine?

Octoate commented 3 years ago

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

eric-saintetienne commented 2 years ago

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"