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
FROM mysql:5.7 | |
# Update base image | |
RUN apt update && apt upgrade -y | |
# Set database root password | |
ENV MYSQL_ROOT_PASSWORD=toor | |
EXPOSE 3306 |
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 json, sys, uuid, os | |
from argparse import ArgumentParser | |
from http import client | |
headers = { | |
'Content-Type': 'application/json' | |
} | |
commands_uri = 'hmg.msging.net' | |
connection = client.HTTPSConnection(commands_uri) |
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 json, sys, uuid, os | |
from argparse import ArgumentParser | |
from http import client | |
headers = { | |
'Content-Type': 'application/json' | |
} | |
commands_uri = 'hmg.msging.net' | |
connection = client.HTTPSConnection(commands_uri) |