Metadata-Version: 2.1
Name: docker-amend
Version: 0.1.1
Summary: Amend Docker images by running a command in a separate layer.
Home-page: https://gitlab.com/notpushkin/docker-amend
License: ISC
Author: Alexander Pushkov
Author-email: alexander@notpushk.in
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: docker (>=4.2.0,<5.0.0)
Requires-Dist: typer (>=0.1.1,<0.2.0)
Description-Content-Type: text/markdown

# docker-amend

**Install**: `pipx install docker-amend` (plain `pip` works too)

**Usage**: ```docker-amend [OPTIONS] IMAGE COMMAND...```

**Example**:

```
$ docker build -t my-image .
...
$ docker-amend my-image poetry add requests
$ docker run my-image poetry show
requests         2.23.0     Python HTTP for Humans.
$ grep requests pyproject.toml
requests = ^2.23.0
```

**Options**:

* `-t, --tag NAME[:VERSION]`: Use a different name/tag for the resulting image
* `-v, --volume SOURCE:TARGET`: Bind mount a volume (assumes --no-pwd-volume)
* `--no-cwd-volume`: Do not mount cwd as a volume
* `--install-completion`: Install completion for the current shell.
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
* `--help`: Show this message and exit.

