Fix Map.tsx types, auth flow, Docker legacy-peer-deps
This commit is contained in:
11
deploy/get-log.py
Normal file
11
deploy/get-log.py
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
import paramiko
|
||||
c = paramiko.SSHClient()
|
||||
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||
c.connect("10.10.0.10", username="localadministrator", password="Bbt9115xty9176!", timeout=20)
|
||||
_, o, e = c.exec_command(
|
||||
"docker exec coolify-db psql -U coolify -d coolify -t -A -c "
|
||||
"\"SELECT logs FROM application_deployment_queues WHERE id=1086;\""
|
||||
)
|
||||
print(o.read().decode()[-15000:])
|
||||
c.close()
|
||||
Reference in New Issue
Block a user