Various tweaks

* Use --no-tablespaces in mysqldump
* Dump to 0.7.0
* pin docker version
* Include missing packages in setup.py
This commit is contained in:
einarf
2023-11-10 22:24:29 +01:00
parent 28dda6b09d
commit 405bd4af15
3 changed files with 25 additions and 7 deletions

View File

@@ -41,6 +41,7 @@ class MariadbContainer(Container):
f"--port={creds['port']}",
f"--user={creds['username']}",
"--all-databases",
"--no-tablespaces",
]
def backup(self):
@@ -100,6 +101,7 @@ class MysqlContainer(Container):
f"--port={creds['port']}",
f"--user={creds['username']}",
"--all-databases",
"--no-tablespaces",
]
def backup(self):