-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from RoyAtanu/develop
housekeeping changes
- Loading branch information
Showing
5 changed files
with
51 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Functions currently available with this build | ||
- Docker artifacts -> container and image | ||
- search and list | ||
- Docker artifacts -> container, image, volume | ||
- search, list, clean | ||
|
||
Changes in this Release | ||
- Workflow updated for automatic release creation and artifact upload | ||
- README.md updated | ||
- support for volume added | ||
- CLI help added |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# pull images | ||
docker pull busybox | ||
docker pull hello-world | ||
docker pull alpine | ||
|
||
# start containers | ||
docker run -d busybox | ||
docker run -d hello-world | ||
docker run -d alpine | ||
|
||
# create volumes | ||
docker volume create --driver local volume1 | ||
docker volume create --driver local volume2 | ||
docker volume create --driver local volume3 |