Skip to content

Commit

Permalink
[Makefile] Specify docker repository explicitly (#5690)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jun 3, 2024
1 parent c712802 commit af02b48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ MLRUN_VERSION ?= unstable
# if the provided version includes a "+" we replace it with "-" for the docker tag
MLRUN_DOCKER_TAG ?= $(shell echo "$(MLRUN_VERSION)" | sed -E 's/\+/\-/g')
MLRUN_DOCKER_REPO ?= mlrun
# empty by default (dockerhub), can be set to something like "quay.io/".
# This will be used to tag the images built using this makefile
MLRUN_DOCKER_REGISTRY ?=
DOCKER_HUB ?= registry.hub.docker.com
MLRUN_DOCKER_REGISTRY ?= $(DOCKER_HUB)/
# empty by default (use cache), set it to anything to disable caching (will add flags to pip and docker commands to
# disable caching)
MLRUN_NO_CACHE ?=
Expand Down Expand Up @@ -583,7 +583,7 @@ run-test-db:
--env MYSQL_ROOT_HOST=% \
--env MYSQL_DATABASE="mlrun" \
--detach \
mysql/mysql-server:8.0 \
$(DOCKER_HUB)/mysql/mysql-server:8.0 \
--character-set-server=utf8 \
--collation-server=utf8_bin

Expand Down

0 comments on commit af02b48

Please sign in to comment.