Skip to content

Commit e3e090e

Browse files
committed
chore(pkg): use podman replace docker
1 parent 711ad2e commit e3e090e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Short name: Short name, following [a-zA-Z_], used all over the place.
22
# Some uses for short name:
3-
# - Docker image name
3+
# - Container image name
44
# - Kubernetes service, rc, pod, secret, volume names
55
REPO_PATH := github.com/drycc/pkg
66
DEV_ENV_IMAGE := ${DEV_REGISTRY}/drycc/go-dev
@@ -9,15 +9,15 @@ DEV_ENV_WORK_DIR := /opt/drycc/go/src/${REPO_PATH}
99
# Enable vendor/ directory support.
1010
export GO15VENDOREXPERIMENT=1
1111

12-
# SemVer with build information is defined in the SemVer 2 spec, but Docker
12+
# SemVer with build information is defined in the SemVer 2 spec, but Container
1313
# doesn't allow +, so we use -.
1414
VERSION := 0.0.1-$(shell date "+%Y%m%d%H%M%S")
1515

1616
# Common flags passed into Go's linker.
1717
LDFLAGS := "-s -X main.version=${VERSION}"
1818

1919
PKG_DIRS := ./...
20-
DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
20+
DEV_ENV_CMD := podman run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
2121

2222
bootstrap:
2323
${DEV_ENV_CMD} go mod vendor

0 commit comments

Comments
 (0)