diff --git a/pkg/services/container/morph/executor.go b/pkg/services/container/morph/executor.go
index aa483862c3..a424847af1 100644
--- a/pkg/services/container/morph/executor.go
+++ b/pkg/services/container/morph/executor.go
@@ -65,6 +65,8 @@ func (s *morphExecutor) Get(ctx context.Context, body *container.GetRequestBody)
 
 	res := new(container.GetResponseBody)
 	res.SetContainer(cnr.ToV2())
+	res.SetSignature(cnr.Signature().ToV2())
+	res.SetSessionToken(cnr.SessionToken().ToV2())
 
 	return res, nil
 }