fix(docker): [ota] nil ptr

This commit is contained in:
Jacky 2025-05-03 09:37:53 +00:00
parent 123dd83b51
commit b95ef57e42
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D

View file

@ -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)