summaryrefslogtreecommitdiff
path: root/cmd/podman/create.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-12-17 16:14:11 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2018-12-18 12:50:50 -0500
commit59635cd1863a7da7a198e14c4d48464eef15aa00 (patch)
tree3f99f71a04d565ed103c2a75742180b7332c837c /cmd/podman/create.go
parent3ec11ac77c54acbe5d1b66918434e2d4db3ca3cf (diff)
downloadpodman-59635cd1863a7da7a198e14c4d48464eef15aa00.tar.gz
podman-59635cd1863a7da7a198e14c4d48464eef15aa00.tar.bz2
podman-59635cd1863a7da7a198e14c4d48464eef15aa00.zip
Add information on --restart
We need to recommend that users use Systemd unit files if they want the container to restart automatically. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/create.go')
-rw-r--r--cmd/podman/create.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go
index 6c6bcfb41..870eb28d6 100644
--- a/cmd/podman/create.go
+++ b/cmd/podman/create.go
@@ -412,6 +412,10 @@ func parseCreateOpts(ctx context.Context, c *cli.Context, runtime *libpod.Runtim
blkioWeight uint16
namespaces map[string]string
)
+ if c.IsSet("restart") {
+ return nil, errors.Errorf("--restart option is not supported.\nUse systemd unit files for restarting containers")
+ }
+
idmappings, err := util.ParseIDMapping(c.StringSlice("uidmap"), c.StringSlice("gidmap"), c.String("subuidname"), c.String("subgidname"))
if err != nil {
return nil, err