polyci 0.0.16 → 0.0.17
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 +4 -4
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -364,11 +364,11 @@ function appendModuleDeployJob(lines, module) {
|
|
|
364
364
|
lines.push(` - chmod 644 ~/.ssh/known_hosts`);
|
|
365
365
|
lines.push(` - echo -n $CI_JOB_TOKEN | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY`);
|
|
366
366
|
lines.push(` - docker context create remote --docker "host=ssh://$DEPLOY_USER@$DEPLOY_ADDRESS:$DEPLOY_PORT"`);
|
|
367
|
-
lines.push(` - docker context use remote`);
|
|
367
|
+
// lines.push(` - docker context use remote`);
|
|
368
368
|
lines.push(` - cd ci`);
|
|
369
|
-
lines.push(` - docker compose -p $INSTANCE_CONTAINER down --remove-orphans`);
|
|
370
|
-
lines.push(` - docker compose pull`);
|
|
371
|
-
lines.push(` - docker compose -p $INSTANCE_CONTAINER up -d`);
|
|
369
|
+
lines.push(` - docker --context remote compose -p $INSTANCE_CONTAINER down --remove-orphans`);
|
|
370
|
+
lines.push(` - docker --context remote compose pull`);
|
|
371
|
+
lines.push(` - docker --context remote compose -p $INSTANCE_CONTAINER up -d`);
|
|
372
372
|
lines.push(` - rm -rf ~/.ssh`);
|
|
373
373
|
lines.push(``);
|
|
374
374
|
}
|