0.3.0
Pre-release
Pre-release
What's Changed
- Added
CONTRIBUTING.md
file by @divshacker in #10 - Added Code Of Conduct.md by @muthuannamalai12 in #11
- Add Networking Functions to Orchestration by @PineappleIOnic in #12
New Contributors
- @divshacker made their first contribution in #10
- @muthuannamalai12 made their first contribution in #11
Full Changelog: 0.2.1...0.3.0
New Networking Functions
createNetwork(name, isInternal)
Creates a network with that nameremoveNetwork(name)
Deletes the network with that namenetworkConnect(container, network)
Connects a container onto that networknetworkDisconnect(container, network, force)
Disconnects a container from that network, can be forced using the force paramlistNetworks()
Returns a list of all networks available
Updated Functions
run()
now has a new parameterhostname
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