fix: Secrets join

This commit is contained in:
Andras Bacsai 2022-02-10 18:41:30 +01:00
parent c64bbbe426
commit ae6f325c0a

View File

@ -232,7 +232,7 @@ export default async function (job) {
}); });
saveBuildLog({ line: 'Deployment started.', buildId, applicationId }); saveBuildLog({ line: 'Deployment started.', buildId, applicationId });
const { stderr } = await asyncExecShell( const { stderr } = await asyncExecShell(
`DOCKER_HOST=${host} docker run ${envs.join()} ${labels.join( `DOCKER_HOST=${host} docker run ${envs.join(' ')} ${labels.join(
' ' ' '
)} --name ${imageId} --network ${docker.network} --restart always -d ${applicationId}:${tag}` )} --name ${imageId} --network ${docker.network} --restart always -d ${applicationId}:${tag}`
); );