Releases: utopia-php/orchestration
Releases · utopia-php/orchestration
0.7.0
What's Changed
- remove authors by @diamant3 in #20
- update cli version by @lohanidamodar in #22
New Contributors
Full Changelog: 0.6.0...0.7.0
0.6.0
What's Changed
- Add code examples to the README by @PineappleIOnic in #17
- Feat: Increase CLI library version by @Meldiron in #18
Full Changelog: 0.5.0...0.6.0
0.5.0
0.4.1
What's Changed
- updated cli to 0.12.* by @lohanidamodar in #14
New Contributors
- @lohanidamodar made their first contribution in #14
Full Changelog: 0.4.0...0.4.1
0.4.0
What's Changed
- Add RM parameter to run() command by @PineappleIOnic in #13
Full Changelog: 0.3.0...0.4.0
0.3.0
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