@updock/win32-x64 0.1.0 → 0.1.1

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/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # updock
2
+
3
+ Run any Docker app from one word. No YAML, no flag-hunting.
4
+
5
+ You type a name. updock finds the image, lets you pick a version, asks only the
6
+ few things that actually matter (ports, passwords, env vars), writes the Compose
7
+ file and `.env`, and brings it up. After that you control everything by number.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ npm install -g updock
13
+ # or run it once, without installing:
14
+ npx updock postgres
15
+ ```
16
+
17
+ Other install methods (Homebrew, go install, prebuilt binaries) are in the docs.
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ updock postgres # search, pick a version, configure, run
23
+ updock ls # list your projects, numbered
24
+ updock logs 2 # everything after is controlled by number
25
+ updock stop 2
26
+ ```
27
+
28
+ ## Links
29
+
30
+ - Documentation: https://amrelsagaei.github.io/updock/
31
+ - Source and issues: https://github.com/amrelsagaei/updock
32
+ - License: MIT
package/bin/updock.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@updock/win32-x64",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "updock binary for win32 x64",
5
5
  "license": "MIT",
6
6
  "repository": {