1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-19 21:01:31 +00:00

[PHP-FPM] use python bootstrapper to start PHP-FPM container

This commit is contained in:
FreddleSpl0it
2025-05-22 13:06:35 +02:00
parent 767d746419
commit f329549c2e
12 changed files with 247 additions and 225 deletions

View File

@@ -25,6 +25,8 @@ def main():
from modules.BootstrapClamd import Bootstrap
elif container_name == "mysql-mailcow":
from modules.BootstrapMysql import Bootstrap
elif container_name == "php-fpm-mailcow":
from modules.BootstrapPhpfpm import Bootstrap
else:
print(f"No bootstrap handler for container: {container_name}", file=sys.stderr)
sys.exit(1)