Skip to content

Commit

Permalink
Merge pull request #126 from crazy-max/docker-24.0-set-ref
Browse files Browse the repository at this point in the history
[docker/24.0] pkg(docker-cli,docker-engine): fix default ref to 24.0
  • Loading branch information
crazy-max committed May 25, 2023
2 parents a40b98a + 58e9c41 commit c26015b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/docker-cli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DESTDIR ?= $(BASEDIR)/bin
BAKE_DEFINITIONS ?= -f docker-bake.hcl -f ../../common/packages.hcl

export DOCKER_CLI_REPO := $(if $(DOCKER_CLI_REPO),$(DOCKER_CLI_REPO),https://github.com/docker/cli.git)
export DOCKER_CLI_REF := $(if $(DOCKER_CLI_REF),$(DOCKER_CLI_REF),master)
export DOCKER_CLI_REF := $(if $(DOCKER_CLI_REF),$(DOCKER_CLI_REF),24.0)

export PKG_DEB_REVISION = 3
export PKG_RPM_RELEASE = 3
Expand Down
2 changes: 1 addition & 1 deletion pkg/docker-cli/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "DOCKER_CLI_REPO" {

# Sets the docker cli ref.
variable "DOCKER_CLI_REF" {
default = "master"
default = "24.0"
}

# set to 1 to enforce nightly build
Expand Down
2 changes: 1 addition & 1 deletion pkg/docker-engine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DESTDIR ?= $(BASEDIR)/bin
BAKE_DEFINITIONS ?= -f docker-bake.hcl -f ../../common/packages.hcl

export DOCKER_ENGINE_REPO := $(if $(DOCKER_ENGINE_REPO),$(DOCKER_ENGINE_REPO),https://github.com/docker/docker.git)
export DOCKER_ENGINE_REF := $(if $(DOCKER_ENGINE_REF),$(DOCKER_ENGINE_REF),master)
export DOCKER_ENGINE_REF := $(if $(DOCKER_ENGINE_REF),$(DOCKER_ENGINE_REF),24.0)

export PKG_DEB_REVISION = 3
export PKG_RPM_RELEASE = 3
Expand Down
2 changes: 1 addition & 1 deletion pkg/docker-engine/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "DOCKER_ENGINE_REPO" {

# Sets the docker engine ref.
variable "DOCKER_ENGINE_REF" {
default = "master"
default = "24.0"
}

# set to 1 to enforce nightly build
Expand Down

0 comments on commit c26015b

Please sign in to comment.