Skip to content

Commit

Permalink
Updated dockerhub image provider to use couchbase/server repo.
Browse files Browse the repository at this point in the history
We previously used the couchbase:$TAG path to access images, but these are
slightly delayed due to needing DockerHub approval.  We now use the
couchbase/server:$TAG path, which is fully under Couchbase' control.
  • Loading branch information
brett19 committed Oct 25, 2024
1 parent f9da78c commit e6f3aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/dockerdeploy/dockerhubimageprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (p *DockerHubImageProvider) GetImage(ctx context.Context, def *ImageDef) (*
serverVersion = fmt.Sprintf("enterprise-%s", def.Version)
}

dhImagePath := fmt.Sprintf("couchbase:%s", serverVersion)
dhImagePath := fmt.Sprintf("couchbase/server:%s", serverVersion)
p.Logger.Debug("identified dockerhub image to pull", zap.String("image", dhImagePath))

return MultiArchImagePuller{
Expand Down

0 comments on commit e6f3aba

Please sign in to comment.