CLI for manage container applications
Project description
Dock CLI
CLI tool for managing containerized applications in a Git repository.
It allows you to implement automatic version control for Docker images and Helm charts in a quick and easy way.
Installation
Install and update using pip.
$ pip install -U dock-cli
Getting Started
Assuming you have a repository with multiple Docker images and Helm charts that require automatic version control.
For example, the folder structure of your repository is as follows:
<repository_root>/
| - .git/
| - charts/
| | - myFirstChart/
| | | - Chart.yaml
| | - mySecondChart/
| | | - Chart.yaml
| - images/
| | - myFirstImage/
| | | - Dockerfile
| | - mySecondImage/
| | | - Dockerfile
| - dock.ini
And the content of dock.ini
is as follows:
$ cat dock.ini
[DEFAULT]
registry = posen
oci-registry = oci://registry-1.docker.io/posen
[images/myFirstImage]
image-file = Dockerfile
type = image
[images/mySecondImage]
image-file = Dockerfile
type = image
[charts/myFirstChart]
type = chart
[charts/mySecondChart]
type = chart
Then you can use the following command to push to the registry:
- List all images and charts
$ dock image list images/myFirstImage images/mySecondImage $ dock chart list charts/myFirstChart charts/mySecondChart
- Build all images and Package all charts
$ dock image list | xargs -r dock image build $ dock chart list | xargs -r dock chart package
- Push all images and charts
$ dock image list | xargs -r dock image push $ dock chart list | xargs -r dock chart push
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dock-cli-0.4.0.tar.gz
.
File metadata
- Download URL: dock-cli-0.4.0.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1e02dd314fcf85b87f1215ca2b430a99e98e0699fbeb6ced362fef7ea67be8c |
|
MD5 | 2aba6aea890665eb3ea8fd8ec3fba16d |
|
BLAKE2b-256 | 97f857f2590939f65f177820026e47bf7351c1ca187f631c6a8b97528984af6d |
File details
Details for the file dock_cli-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: dock_cli-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d769bf2c49a4acdd85ea040c97e310389b3f5315fab8966fae733c94820982d |
|
MD5 | 6aaf05606b772aae0d61cc0393fa0428 |
|
BLAKE2b-256 | dabf5f70757a2a3773ef890c228952858b67709fd4785a54c348dcbf2f3eac5f |