mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 23:20:12 +01:00
fix: empty out the aliases on recreation
This commit is contained in:
parent
dfe4346ab3
commit
48e689fa8f
1 changed files with 16 additions and 1 deletions
|
|
@ -208,11 +208,25 @@ func (client dockerClient) StopContainer(c t.Container, timeout time.Duration) e
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (client dockerClient) GetNetworkConfig(c t.Container) *network.NetworkingConfig {
|
||||||
|
config := &network.NetworkingConfig{
|
||||||
|
EndpointsConfig: c.ContainerInfo().NetworkSettings.Networks,
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, ep := range config.EndpointsConfig {
|
||||||
|
// This keeps accumulating across upgrades with no apparent added value
|
||||||
|
// so throwing the information away to prevent overflows.
|
||||||
|
ep.Aliases = nil
|
||||||
|
}
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
func (client dockerClient) StartContainer(c t.Container) (t.ContainerID, error) {
|
func (client dockerClient) StartContainer(c t.Container) (t.ContainerID, error) {
|
||||||
bg := context.Background()
|
bg := context.Background()
|
||||||
config := c.GetCreateConfig()
|
config := c.GetCreateConfig()
|
||||||
hostConfig := c.GetCreateHostConfig()
|
hostConfig := c.GetCreateHostConfig()
|
||||||
networkConfig := &network.NetworkingConfig{EndpointsConfig: c.ContainerInfo().NetworkSettings.Networks}
|
networkConfig := client.GetNetworkConfig(c)
|
||||||
|
|
||||||
// simpleNetworkConfig is a networkConfig with only 1 network.
|
// simpleNetworkConfig is a networkConfig with only 1 network.
|
||||||
// see: https://github.com/docker/docker/issues/29265
|
// see: https://github.com/docker/docker/issues/29265
|
||||||
simpleNetworkConfig := func() *network.NetworkingConfig {
|
simpleNetworkConfig := func() *network.NetworkingConfig {
|
||||||
|
|
@ -228,6 +242,7 @@ func (client dockerClient) StartContainer(c t.Container) (t.ContainerID, error)
|
||||||
name := c.Name()
|
name := c.Name()
|
||||||
|
|
||||||
log.Infof("Creating %s", name)
|
log.Infof("Creating %s", name)
|
||||||
|
|
||||||
createdContainer, err := client.api.ContainerCreate(bg, config, hostConfig, simpleNetworkConfig, nil, name)
|
createdContainer, err := client.api.ContainerCreate(bg, config, hostConfig, simpleNetworkConfig, nil, name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue