We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e71a8 commit 9fd892aCopy full SHA for 9fd892a
2 files changed
.travis.yml
@@ -3,7 +3,7 @@ sudo: required
3
services:
4
- docker
5
script:
6
- - make docker-build test
+ - DEV_REGISTRY="docker.io" make docker-build test
7
notifications:
8
slack:
9
rooms:
Makefile
@@ -3,6 +3,7 @@
# - Docker image name
# - Kubernetes service, deployment, pod names
SHORT_NAME := registry
+DRYCC_REGISTRY ?= ${DEV_REGISTRY}
PLATFORM ?= linux/amd64,linux/arm64
include includes.mk versioning.mk
@@ -21,9 +22,6 @@ DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
21
22
LDFLAGS := "-s -w -X main.version=${VERSION}"
23
BINDIR := ./rootfs/opt/registry/sbin
24
-# Legacy support for DEV_REGISTRY, plus new support for DRYCC_REGISTRY.
25
-DRYCC_REGISTRY ?= ${DEV_REGISTRY}
26
-
27
ifeq ($(STORAGE_TYPE),)
28
STORAGE_TYPE = fs
29
endif
0 commit comments