Skip to content

Commit

Permalink
Enclose docker volume path in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Nov 5, 2023
1 parent e1921af commit eaade6f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/integration/oidc/test_auth_oidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,14 @@ def start_keycloak_docker(container_name, port=8443, image="keycloak/keycloak:22
START_SLURM_DOCKER = [
"docker",
"run",
"-h",
"localhost",
"-p",
f"{port}:8443",
"-d",
"--name",
container_name,
"--rm",
"-v",
f"{keycloak_realm_data}:/opt/keycloak/data/import",
f"'{keycloak_realm_data}':/opt/keycloak/data/import",
"-e",
f"KEYCLOAK_ADMIN={KEYCLOAK_ADMIN_USERNAME}",
"-e",
Expand Down

0 comments on commit eaade6f

Please sign in to comment.