-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcake.py
62 lines (49 loc) · 2.06 KB
/
cake.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
from dotenv import load_dotenv
import subprocess
def get_short_commit_hash(length=7):
try:
short_hash_result = subprocess.check_output(['git', 'rev-parse', f'--short={length}', 'HEAD']).strip().decode('utf-8')
return short_hash_result
except subprocess.CalledProcessError as e:
print(f"Error: {e}")
return None
if __name__ == "__main__":
load_dotenv(dotenv_path=".env")
input_file = "docker-compose.yml.base"
output_file = "docker-compose.yml"
# Required environment variables
required_variables = [
"IMAGE_NAME",
"SERVER_TYPE",
"EXTERNAL_PORT"
]
# Check missing environment variables
missing_variables = [var for var in required_variables if not os.getenv(var)]
if missing_variables:
raise EnvironmentError(f"{len(missing_variables)} variables are missing: {', '.join(missing_variables)}")
# Get environment variables
IMAGE_NAME = os.getenv("IMAGE_NAME")
SERVER_TYPE = os.getenv("SERVER_TYPE")
EXTERNAL_PORT = os.getenv("EXTERNAL_PORT")
variables = {
"fastapi_service_name": f"{IMAGE_NAME}-{SERVER_TYPE}-server",
"fastapi_container_name": f"{IMAGE_NAME}-{SERVER_TYPE}-server",
"redis_service_name": f"{IMAGE_NAME}-{SERVER_TYPE}-redis",
"scheduled_tasks_service_name": f"{IMAGE_NAME}-{SERVER_TYPE}-scheduled-tasks",
"tunnel_service_name": f"{IMAGE_NAME}-{SERVER_TYPE}-tunnel",
}
# load templates
with open(input_file, "r", encoding="utf-8") as file:
content = file.read()
# Generate the final docker-compose.yml file
for placeholder, value in variables.items():
content = content.replace(f"%{placeholder}%", value)
with open(output_file, "w+", encoding="utf-8") as file:
file.write(content)
short_hash = get_short_commit_hash()
if short_hash:
with open("current_commit.txt", "w+", encoding="utf-8") as file:
file.write(short_hash)
print(f"Commit hash {short_hash} saved successfully.")
print(f"{output_file} generated successfully.")