Odd solutions that I found in previous positions.
Last active
March 17, 2025 16:28
-
-
Save zenatuz/b1d593f735b4291a3adc9f1f0c7151ae to your computer and use it in GitHub Desktop.
Docker Containers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import os | |
# Porta 81 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
result = sock.connect_ex(('localhost',81)) | |
if result == 0: | |
print "Port is open" | |
else: | |
os.system("docker run -p 81:80 -d dotnetapp:latest") | |
sock.close() | |
# Porta 82 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
result = sock.connect_ex(('localhost',82)) | |
if result == 0: | |
print "Port is open" | |
else: | |
os.system("docker run -p 82:80 -d dotnetapp:latest") | |
sock.close() | |
# Porta 83 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
result = sock.connect_ex(('localhost',83)) | |
if result == 0: | |
print "Port is open" | |
else: | |
os.system("docker run -p 83:80 -d dotnetapp:latest") | |
sock.close() | |
# Porta 84 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
result = sock.connect_ex(('localhost',84)) | |
if result == 0: | |
print "Port is open" | |
else: | |
os.system("docker run -p 84:80 -d dotnetapp:latest") | |
sock.close() | |
# Porta 85 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
result = sock.connect_ex(('localhost',85)) | |
if result == 0: | |
print "Port is open" | |
else: | |
os.system("docker run -p 85:80 -d dotnetapp:latest") | |
sock.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* * * * * sleep 5 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 10 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 15 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 20 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 25 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 30 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 35 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 40 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 45 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 50 && python /home/ec2-user/scripts/check_docker.py | |
* * * * * sleep 55 && python /home/ec2-user/scripts/check_docker.py |
Comments are disabled for this gist.