1
0

Merge pull request #197 from cerc-io/dboreham/uid-gid-to-deploy

Pass uid and gid to compose

Former-commit-id: 900917b54841fc42262037b122fae2fdf97c1834
This commit is contained in:
David Boreham 2023-02-28 10:23:34 -07:00 committed by GitHub
commit 6c49520e69

View File

@ -76,8 +76,10 @@ def command(ctx, include, exclude, cluster, command, extra_args):
service_name = extra_args_list[0]
command_to_exec = extra_args_list[1:]
container_exec_env = {
"CERC_SCRIPT_DEBUG": "true"
} if debug else {}
"CERC_HOST_UID": f"{os.getuid()}",
"CERC_HOST_GID": f"{os.getgid()}"
}
container_exec_env.update({"CERC_SCRIPT_DEBUG": "true"} if debug else {})
if verbose:
print(f"Running compose exec {service_name} {command_to_exec}")
docker.compose.execute(service_name, command_to_exec, envs=container_exec_env)