diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-25 06:46:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 06:46:17 -0400 |
commit | 1077d2d0b72d027a01080c0d3ebdb7d99a969661 (patch) | |
tree | fd6b32e485b0985cff943a2084258fd991a9ec35 /docs/source/markdown | |
parent | 3fec749f56627fa955f8529392be2c1edcdab452 (diff) | |
parent | e704f1362abc416786076a932d8e2ca930b9fa2e (diff) | |
download | podman-1077d2d0b72d027a01080c0d3ebdb7d99a969661.tar.gz podman-1077d2d0b72d027a01080c0d3ebdb7d99a969661.tar.bz2 podman-1077d2d0b72d027a01080c0d3ebdb7d99a969661.zip |
Merge pull request #6321 from Luap99/podman-generate-systemd-unit-prefix
Allow to change the generated systemd unit name prefix
Diffstat (limited to 'docs/source/markdown')
-rw-r--r-- | docs/source/markdown/podman-generate-systemd.1.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-generate-systemd.1.md b/docs/source/markdown/podman-generate-systemd.1.md index fa04f81f9..72031b19b 100644 --- a/docs/source/markdown/podman-generate-systemd.1.md +++ b/docs/source/markdown/podman-generate-systemd.1.md @@ -40,6 +40,18 @@ Override the default stop timeout for the container with the given value. Set the systemd restart policy. The restart-policy must be one of: "no", "on-success", "on-failure", "on-abnormal", "on-watchdog", "on-abort", or "always". The default policy is *on-failure*. +**--container-prefix**=*prefix* + +Set the systemd unit name prefix for containers. The default is *container*. + +**--pod-prefix**=*prefix* + +Set the systemd unit name prefix for pods. The default is *pod*. + +**--separator**=*separator* + +Set the systemd unit name seperator between the name/id of a container/pod and the prefix. The default is *-*. + ## Examples ### Generate and print a systemd unit file for a container |