You've already forked watchtower
mirror of
https://github.com/containrrr/watchtower.git
synced 2025-07-15 23:54:22 +02:00
Unset Hostname when NetworkMode is container
The hostname can not be set on containers using a container network stack
This commit is contained in:
@ -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
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user