Skip to content

0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@PineappleIOnic PineappleIOnic released this 20 Dec 15:14
· 195 commits to main since this release
5398361

What's Changed

New Contributors

Full Changelog: 0.2.1...0.3.0

New Networking Functions

  • createNetwork(name, isInternal) Creates a network with that name
  • removeNetwork(name) Deletes the network with that name
  • networkConnect(container, network) Connects a container onto that network
  • networkDisconnect(container, network, force) Disconnects a container from that network, can be forced using the force param
  • listNetworks() Returns a list of all networks available

Updated Functions

  • run() now has a new parameter hostname for setting the hostname of a container.

Bug Fixes

  • Labels are better sanitised for the DockerCLI Adapter so there is less chance of a command breaking due to invalid labels
  • Volumes are now actually mounted when using the run function on both the DockerCLI and DockerAPI Adapter