mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 06:06:38 +01:00
Merge pull request #448 from raymondelooff/bugfix/188
Unset Hostname when NetworkMode is container
This commit is contained in:
commit
bd1b3c1c89
1 changed files with 5 additions and 0 deletions
|
|
@ -138,6 +138,7 @@ func (c Container) StopSignal() string {
|
||||||
// the options overridden at runtime.
|
// the options overridden at runtime.
|
||||||
func (c Container) runtimeConfig() *dockercontainer.Config {
|
func (c Container) runtimeConfig() *dockercontainer.Config {
|
||||||
config := c.containerInfo.Config
|
config := c.containerInfo.Config
|
||||||
|
hostConfig := c.containerInfo.HostConfig
|
||||||
imageConfig := c.imageInfo.Config
|
imageConfig := c.imageInfo.Config
|
||||||
|
|
||||||
if config.WorkingDir == imageConfig.WorkingDir {
|
if config.WorkingDir == imageConfig.WorkingDir {
|
||||||
|
|
@ -148,6 +149,10 @@ func (c Container) runtimeConfig() *dockercontainer.Config {
|
||||||
config.User = ""
|
config.User = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if hostConfig.NetworkMode.IsContainer() {
|
||||||
|
config.Hostname = ""
|
||||||
|
}
|
||||||
|
|
||||||
if util.SliceEqual(config.Cmd, imageConfig.Cmd) {
|
if util.SliceEqual(config.Cmd, imageConfig.Cmd) {
|
||||||
config.Cmd = nil
|
config.Cmd = nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue