|
@@ -4,6 +4,7 @@ import (
|
|
|
"context"
|
|
|
|
|
|
"github.com/0xJacky/Nginx-UI/internal/docker"
|
|
|
+ "github.com/gin-gonic/gin"
|
|
|
"github.com/uozi-tech/cosy/logger"
|
|
|
"github.com/urfave/cli/v3"
|
|
|
)
|
|
@@ -17,6 +18,7 @@ var UpgradeDockerStep2Command = &cli.Command{
|
|
|
|
|
|
// UpgradeDockerStep2 executes the second step in the temporary container
|
|
|
func UpgradeDockerStep2(ctx context.Context, command *cli.Command) error {
|
|
|
+ logger.Init(gin.DebugMode)
|
|
|
logger.Info("Starting Docker OTA upgrade step 2 from CLI...")
|
|
|
|
|
|
return docker.UpgradeStepTwo(ctx)
|