wayfind 2.0.53 → 2.0.54
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/bin/team-context.js
CHANGED
|
@@ -5762,7 +5762,7 @@ const COMMANDS = {
|
|
|
5762
5762
|
console.log(`\nUpdating ${containerName} (compose: ${composeDir})...`);
|
|
5763
5763
|
const pullResult = spawnSync('docker', ['compose', 'pull'], { cwd: composeDir, stdio: 'inherit' });
|
|
5764
5764
|
if (!pullResult.error && pullResult.status === 0) {
|
|
5765
|
-
spawnSync('docker', ['compose', 'up', '-d'], { cwd: composeDir, stdio: 'inherit' });
|
|
5765
|
+
spawnSync('docker', ['compose', 'up', '-d', '--force-recreate'], { cwd: composeDir, stdio: 'inherit' });
|
|
5766
5766
|
console.log(`${containerName} updated.`);
|
|
5767
5767
|
|
|
5768
5768
|
// Post-deploy smoke check
|
package/package.json
CHANGED