diff options
author | baude <bbaude@redhat.com> | 2019-04-18 16:21:31 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-05-02 14:35:53 -0500 |
commit | c18ad2bfd9034fe6b80e3f33c076af731be6778b (patch) | |
tree | 9caca52ae5d4c17b6bb9f5d1cddb2c0a0c4ec060 /docs/podman-run.1.md | |
parent | ccf28a89bdded86b044f2fd3aa3389b923a81988 (diff) | |
download | podman-c18ad2bfd9034fe6b80e3f33c076af731be6778b.tar.gz podman-c18ad2bfd9034fe6b80e3f33c076af731be6778b.tar.bz2 podman-c18ad2bfd9034fe6b80e3f33c076af731be6778b.zip |
Generate systemd unit files for containers
the podman generate systemd command will generate a systemd unit file
based on the attributes of an existing container and user inputs. the
command outputs the unit file to stdout for the user to copy or
redirect. it is enabled for the remote client as well.
users can set a restart policy as well as define a stop timeout
override for the container.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/podman-run.1.md')
-rw-r--r-- | docs/podman-run.1.md | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/docs/podman-run.1.md b/docs/podman-run.1.md index 5190e5d14..9efb7f51c 100644 --- a/docs/podman-run.1.md +++ b/docs/podman-run.1.md @@ -593,7 +593,7 @@ Not implemented. Restart should be handled via a systemd unit files. Please add your podman commands to a unit file and allow systemd or your init system to handle the -restarting of the container processes. See example below. +restarting of the container processes. See *podman generate systemd*. **--rm**=*true*|*false* @@ -1151,21 +1151,6 @@ the uids and gids from the host. $ podman run --uidmap 0:30000:7000 --gidmap 0:30000:7000 fedora echo hello ``` -### Running a podman container to restart inside of a systemd unit file - - -``` -[Unit] -Description=My App -[Service] -Restart=always -ExecStart=/usr/bin/podman start -a my_app -ExecStop=/usr/bin/podman stop -t 10 my_app -KillMode=process -[Install] -WantedBy=multi-user.target -``` - ### Configuring Storage Options from the command line Podman allows for the configuration of storage by changing the values |