Merge pull request #4554 from dokku/josegonzalez-patch-1

Ensure deployment task containers get associated to internal networks
This commit is contained in:
Jose Diaz-Gonzalez
2021-04-14 05:35:13 -04:00
committed by GitHub

View File

@@ -415,7 +415,7 @@ func createdContainerID(appName string, dockerArgs []string, image string, comma
}
containerID := strings.TrimSpace(string(b))
err = common.PlugnTrigger("post-container-create", []string{"app", appName, containerID, phase}...)
err = common.PlugnTrigger("post-container-create", []string{"app", containerID, appName, phase}...)
return containerID, err
}