polyci 0.0.17 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +3 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -355,7 +355,8 @@ function appendModuleDeployJob(lines, module) {
|
|
|
355
355
|
lines.push(` MODULE_PATH: ${module.modulePath}`);
|
|
356
356
|
lines.push(` MODULE_TYPE: ${module.moduleType}`);
|
|
357
357
|
lines.push(` script:`);
|
|
358
|
-
lines.push(` - apk add --update --no-cache openssh`);
|
|
358
|
+
// lines.push(` - apk add --update --no-cache openssh`);
|
|
359
|
+
lines.push(` - apk add --update --no-cache openssh-client-default`);
|
|
359
360
|
lines.push(` - eval $(ssh-agent -s)`);
|
|
360
361
|
lines.push(` - echo "$DEPLOY_USER_KEY" | tr -d '\\r' | ssh-add -`);
|
|
361
362
|
lines.push(` - mkdir -p ~/.ssh`);
|
|
@@ -366,6 +367,7 @@ function appendModuleDeployJob(lines, module) {
|
|
|
366
367
|
lines.push(` - docker context create remote --docker "host=ssh://$DEPLOY_USER@$DEPLOY_ADDRESS:$DEPLOY_PORT"`);
|
|
367
368
|
// lines.push(` - docker context use remote`);
|
|
368
369
|
lines.push(` - cd ci`);
|
|
370
|
+
lines.push(` - export DOCKER_API_VERSION=1.41`);
|
|
369
371
|
lines.push(` - docker --context remote compose -p $INSTANCE_CONTAINER down --remove-orphans`);
|
|
370
372
|
lines.push(` - docker --context remote compose pull`);
|
|
371
373
|
lines.push(` - docker --context remote compose -p $INSTANCE_CONTAINER up -d`);
|