Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Aug 31, 2023
1 parent a74de10 commit 50f793c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ All notable changes to this project will be documented in this file.
### Added

- a no arg function variant to `crypt/ciphers`
- a `docker` module to manage docker images and containers from Venice scripts. The functions support both TEXT and JSON output of the docker commands. The JSON output is parsed and converted to Venice data for further processing. The module currently supports the Docker commands:
- a `docker` module to manage docker images and containers from Venice scripts. The functions support both TEXT and JSON output of the docker commands. The JSON output is parsed and converted to Venice data for further processing.
A generic docker function can run any docker command with a parameter list.
Venice supports the most used docker commands with some explicit functions:
- docker version,
- docker images, docker image prune, docker image rm
- docker ps, docker start, docker stop, docker cp, docker diff, docker pause, docker unpause, docker wait
- docker images, docker rmi, docker image prune/rm/pull
- docker run, docker ps, docker start, docker stop, docker cp, docker exec, docker diff, docker pause, docker unpause, docker wait


### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@ public DocSection section() {
all.addSection(images);
images.addItem(diBuilder.getDocItem("docker/images", false));
images.addItem(diBuilder.getDocItem("docker/image-pull", false));
images.addItem(diBuilder.getDocItem("docker/rmi", false));
images.addItem(diBuilder.getDocItem("docker/image-rm", false));
images.addItem(diBuilder.getDocItem("docker/image-prune", false));

final DocSection containers = new DocSection("Containers", id());
all.addSection(containers);
containers.addItem(diBuilder.getDocItem("docker/run", false));
containers.addItem(diBuilder.getDocItem("docker/ps", false));
containers.addItem(diBuilder.getDocItem("docker/start", false));
containers.addItem(diBuilder.getDocItem("docker/stop", false));
Expand Down

0 comments on commit 50f793c

Please sign in to comment.