fix container startup script

This commit is contained in:
Joseph Garrone
2021-02-22 12:15:27 +01:00
parent 47708d222e
commit 002ffc0fde

View File

@ -48,7 +48,8 @@ export function generateDebugFiles(
` --name ${containerName} \\`, ` --name ${containerName} \\`,
" -e KEYCLOAK_USER=admin \\", " -e KEYCLOAK_USER=admin \\",
" -e KEYCLOAK_PASSWORD=admin \\", " -e KEYCLOAK_PASSWORD=admin \\",
` -v ${pathJoin(keycloakThemeBuildingDirPath, "src", "main", "resources", "theme", "onyxia")}:/opt/jboss/keycloak/themes/onyxia:rw \\`, ` -v ${pathJoin(keycloakThemeBuildingDirPath, "src", "main", "resources", "theme", packageJsonName)
}:/opt/jboss/keycloak/themes/${packageJsonName}:rw \\`,
` -it ${dockerImage}:latest`, ` -it ${dockerImage}:latest`,
"" ""
].join("\n"), ].join("\n"),