This commit is contained in:
admin
2026-06-01 00:35:29 +09:00
parent ebc87f96f9
commit 8c66d820c8
34 changed files with 1775 additions and 77 deletions

7
_check_containers.py Normal file
View File

@@ -0,0 +1,7 @@
import paramiko
c = paramiko.SSHClient()
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
c.connect('192.168.0.61', username='root', password='59911784', timeout=15)
_, o, _ = c.exec_command('cd /volume1/docker/njts-accounting && docker compose ps')
print(o.read().decode())
c.close()