switch from pre-signed to public images
All checks were successful
/ Make image (push) Successful in 1m31s

This commit is contained in:
nquidox 2025-10-19 19:43:33 +03:00
parent 947220b65c
commit 3298602a23
6 changed files with 71 additions and 20 deletions

View file

@ -14,7 +14,6 @@ type Deps struct {
Endpoint string
User string
Password string
Domain string
Secure string
}
@ -38,6 +37,6 @@ func NewHandler(deps Deps) *Handler {
}).Debug("Media storage | Created minio client")
return &Handler{
newService(minioClient),
newService(minioClient, deps.Endpoint, secureMode),
}
}