@toa.io/cli 1.1.0-canary.0 → 1.1.0-canary.2

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/cli",
3
- "version": "1.1.0-canary.0",
3
+ "version": "1.1.0-canary.2",
4
4
  "description": "Toa CLI",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -23,12 +23,12 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@toa.io/console": "0.6.0",
26
- "@toa.io/generic": "0.11.0-canary.0",
27
- "@toa.io/kubernetes": "0.7.5-canary.0",
28
- "@toa.io/norm": "1.1.0-canary.0",
29
- "@toa.io/yaml": "0.7.6-canary.0",
26
+ "@toa.io/generic": "0.11.0-canary.2",
27
+ "@toa.io/kubernetes": "0.8.0-canary.2",
28
+ "@toa.io/norm": "1.1.0-canary.2",
29
+ "@toa.io/yaml": "0.8.0-canary.2",
30
30
  "find-up": "5.0.0",
31
31
  "yargs": "17.6.2"
32
32
  },
33
- "gitHead": "0adb45e6d6d309b21b976d257ac0a4fc48d866b3"
33
+ "gitHead": "a80d81d4d9da9fec07606154c959dd6512de4c76"
34
34
  }
package/readme.md CHANGED
@@ -16,6 +16,8 @@ Run composition.
16
16
  </dd>
17
17
  </dl>
18
18
 
19
+ > Note that your `localhost` it is accessible from the container as `host.docker.internal`.
20
+
19
21
  ### env
20
22
 
21
23
  Export environment to a `.env` file.
@@ -22,8 +22,6 @@ async function run (repository, command, runArguments) {
22
22
  const args = ['run', '--rm', ...(runArguments ?? []), id, 'sh', '-c', command]
23
23
  const done = promex()
24
24
 
25
- console.log('toa> docker', args)
26
-
27
25
  const running = await spawn('docker', args, { stdio: 'inherit' })
28
26
 
29
27
  running.on('exit', done.resolve)