thsf.net/maintenance/reboot.py

14 lines
383 B
Python
Raw Permalink Normal View History

2023-05-27 05:25:10 +02:00
#!/usr/bin/python3
import docker
client = docker.from_env()
for container in client.containers.list():
if container.name == "thsf":
2023-05-27 10:02:16 +02:00
print("Content-type: text/html\n\n")
2023-05-27 05:25:10 +02:00
print("[+] Rebooting container<br>")
print(" '-> Stopping container<br>")
container.stop()
print(" '-> Starting container<br>")
container.start()
2023-05-27 10:02:16 +02:00
print("[+] Container restarted<br>")