Update faas-containerd

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (OpenFaaS Ltd) 2019-12-21 10:25:21 +00:00
parent 931959e346
commit 49a93cd0de

View File

@ -20,7 +20,7 @@ func runUp(_ *cobra.Command, _ []string) error {
pkg.Service{
Name: "faas-containerd",
Env: []string{},
Image: "docker.io/alexellis2/faas-containerd:0.2.0",
Image: "docker.io/alexellis2/faas-containerd:0.3.0",
Mounts: []pkg.Mount{
pkg.Mount{
Src: "/run/containerd/containerd.sock",
@ -57,6 +57,7 @@ func runUp(_ *cobra.Command, _ []string) error {
if err != nil {
return err
}
defer supervisor.Close()
log.Printf("Supervisor init done in: %s\n", time.Since(start).String())
@ -65,3 +66,4 @@ func runUp(_ *cobra.Command, _ []string) error {
return nil
}