Removed version.

This commit is contained in:
retoor 2025-06-08 12:58:50 +02:00
parent a95a09a062
commit 987bd3a1c7

View File

@ -16,7 +16,7 @@ class ComposeFileManager:
with open(self.compose_path) as f:
self.compose = yaml.safe_load(f) or {}
except FileNotFoundError:
self.compose = {"version": "3", "services": {}}
self.compose = {"services": {}}
def _save(self):
with open(self.compose_path, "w") as f: