Skip to content

Releases: gpu-cli/vz

v0.3.8

03 Apr 21:29

Choose a tag to compare

v0.3.7

03 Apr 20:16

Choose a tag to compare

Full Changelog: v0.3.6...v0.3.7

v0.3.6

03 Apr 16:19

Choose a tag to compare

Port forwarding for vz run

  • -p/--publish flag: forward host ports to container ports (e.g., vz run -p 8080:80 -- nginx)
  • vz.json ports field: declare port mappings in config (e.g., "ports": ["3000:3000", "5432:5432"])
  • CLI flags and config ports are merged — use either or both
  • Syntax: HOST:CONTAINER[/PROTO] (defaults to TCP, supports UDP)

Example

vz run -p 9080:8080 -- python3 -m http.server 8080
# → curl localhost:9080 from the host

Or in vz.json:

{
  "image": "ubuntu:24.04",
  "ports": ["3000:3000", "5432:5432"],
  "setup": ["apt-get update && apt-get install -y postgresql"]
}

v0.3.5

03 Apr 14:21

Choose a tag to compare

Full Changelog: v0.3.4...v0.3.5

v0.3.4

03 Apr 03:32

Choose a tag to compare

Full Changelog: v0.3.3...v0.3.4

v0.3.3

03 Apr 00:39

Choose a tag to compare

Full Changelog: v0.3.2...v0.3.3

v0.3.2

02 Apr 23:51

Choose a tag to compare

Full Changelog: v0.3.1...v0.3.2

v0.3.1

02 Apr 22:49

Choose a tag to compare

Full Changelog: v0.3.0...v0.3.1

v0.3.0

02 Apr 21:09

Choose a tag to compare

Full Changelog: v0.2.0...v0.3.0

v0.2.0

02 Apr 05:34

Choose a tag to compare