diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-01-30 06:23:58 +0100 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-03 19:49:14 +0000 |
commit | 095aaaa639ab57c594bb80bfefbfaed2a2fdff92 (patch) | |
tree | 55db4600d1fe284fb591ee810d490b179afe16ad /cmd/podman/spec.go | |
parent | 6ba6ecf59b9204d36388de07b866f157a4d13957 (diff) | |
download | podman-095aaaa639ab57c594bb80bfefbfaed2a2fdff92.tar.gz podman-095aaaa639ab57c594bb80bfefbfaed2a2fdff92.tar.bz2 podman-095aaaa639ab57c594bb80bfefbfaed2a2fdff92.zip |
Allow users to specify logpath
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #135
Approved by: mheon
Diffstat (limited to 'cmd/podman/spec.go')
-rw-r--r-- | cmd/podman/spec.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/spec.go b/cmd/podman/spec.go index a14bd7dfb..d21d8b6da 100644 --- a/cmd/podman/spec.go +++ b/cmd/podman/spec.go @@ -608,6 +608,10 @@ func (c *createConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, er if len(c.HostAdd) > 0 { options = append(options, libpod.WithHosts(c.HostAdd)) } + logPath := getLoggingPath(c.LogDriverOpt) + if logPath != "" { + options = append(options, libpod.WithLogPath(logPath)) + } options = append(options, libpod.WithPrivileged(c.Privileged)) return options, nil |