@toa.io/operations 1.0.0-alpha.17 → 1.0.0-alpha.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/operations",
3
- "version": "1.0.0-alpha.17",
3
+ "version": "1.0.0-alpha.18",
4
4
  "description": "Toa Deployment",
5
5
  "homepage": "https://toa.io",
6
6
  "author": {
@@ -27,12 +27,12 @@
27
27
  "test": "echo \"Error: run tests from root\" && exit 1"
28
28
  },
29
29
  "dependencies": {
30
- "@toa.io/filesystem": "1.0.0-alpha.17",
31
- "@toa.io/generic": "1.0.0-alpha.17",
32
- "@toa.io/norm": "1.0.0-alpha.17",
33
- "@toa.io/yaml": "1.0.0-alpha.17",
30
+ "@toa.io/filesystem": "1.0.0-alpha.18",
31
+ "@toa.io/generic": "1.0.0-alpha.18",
32
+ "@toa.io/norm": "1.0.0-alpha.18",
33
+ "@toa.io/yaml": "1.0.0-alpha.18",
34
34
  "execa": "5.1.1",
35
35
  "fs-extra": "11.1.1"
36
36
  },
37
- "gitHead": "40ea6c9695dc6b8dc434cad4eb413d7477238ac5"
37
+ "gitHead": "94b456c37fe548e77b6ab3cd4e0fb014e2fddfa0"
38
38
  }
@@ -114,7 +114,7 @@ class Registry {
114
114
  }
115
115
 
116
116
  async #createBuilder () {
117
- const create = `buildx create --name ${BUILDER} --use`.split(' ')
117
+ const create = `buildx create --name ${BUILDER} --append --use`.split(' ')
118
118
  const bootstrap = 'buildx inspect --bootstrap'.split(' ')
119
119
 
120
120
  await this.#process.execute('docker', create)