1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Set local timezone in containers

This commit is contained in:
Mo 2022-08-02 14:33:20 +02:00
parent 8cbb0d0d50
commit af16e045f4

View file

@ -80,6 +80,7 @@ def create_container(container_name: str, podman_args: str):
run( run(
f"""podman create \ f"""podman create \
--name {container_name} \ --name {container_name} \
--tz local \
{podman_args}""", {podman_args}""",
check=True, check=True,
) )