design overall

This commit is contained in:
usmannasir
2025-06-15 01:10:08 +05:00
parent 03e8bbbf54
commit f23b57053c
2075 changed files with 102714 additions and 25096 deletions

4
dockerManager/views.py Executable file → Normal file
View File

@@ -99,6 +99,10 @@ def viewContainer(request, name):
except KeyError:
return redirect(loadLoginPage)
except Exception as e:
import traceback
error_msg = f"Error viewing container {name}: {str(e)}\n{traceback.format_exc()}"
return HttpResponse(error_msg, status=500)
@preDockerRun
def getTags(request):