diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-12-19 19:36:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 19:36:52 +0100 |
commit | dde48b44e725a3da959c627519e8110ec992a26e (patch) | |
tree | b3c6ba6c51221548eee9584df5be10b6418445c9 /libpod/options.go | |
parent | 6b956dfd1f1071ceb40b403a9604da387979105a (diff) | |
parent | 437bc61f4e64d132736066330b18f327bffe48fa (diff) | |
download | podman-dde48b44e725a3da959c627519e8110ec992a26e.tar.gz podman-dde48b44e725a3da959c627519e8110ec992a26e.tar.bz2 podman-dde48b44e725a3da959c627519e8110ec992a26e.zip |
Merge pull request #4684 from vrothberg/systemd-improvements
container config: add CreateCommand
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go index a9b775dc3..ebde4eecc 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -1413,6 +1413,18 @@ func WithHealthCheck(healthCheck *manifest.Schema2HealthConfig) CtrCreateOption } } +// WithCreateCommand adds the full command plus arguments of the current +// process to the container config. +func WithCreateCommand() CtrCreateOption { + return func(ctr *Container) error { + if ctr.valid { + return define.ErrCtrFinalized + } + ctr.config.CreateCommand = os.Args + return nil + } +} + // Volume Creation Options // WithVolumeName sets the name of the volume. |