Dokploy / dokploy

Open Source Alternative to Vercel, Netlify and Heroku.
https://dokploy.com/
Other
9.31k stars 459 forks source link

When I try to visit to the Dokploy server it is giving an issue. #703

Closed IcelabsSolutionsInc closed 1 week ago

IcelabsSolutionsInc commented 1 week ago

To Reproduce

image

Current vs. Expected behavior

I was expected to prompt username and password.

Provide environment information

I am using latest version.

Which area(s) are affected? (Select all that apply)

Application

Additional context

No response

Siumauricio commented 1 week ago

Go to your server and run this command

docker service logs dokploy

Very probably you ran out of space

IcelabsSolutionsInc commented 1 week ago

Go to your server and run this command

docker service logs dokploy

Very probably you ran out of space

Yeah, thank you I seen the issue storage was completely used. I fixed using the below process.

  1. I executed df -h so I found that my storage is full.
  2. I executed docker system prune -a --volumes and cleaned the images of docker which was not used or was previous builds which free up 59% of storage.
  3. I restarted the docker and after few moments it started working.

Thanks for your help.