File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ pipeline:
2222- name : publish-linux
2323 image : bash
2424 commands :
25- - docker run --rm
25+ - podman run --rm
2626 -e DRONE_BUILD_EVENT=tag
2727 -e DRONE_REPO_OWNER="$CI_REPO_OWNER"
2828 -e DRONE_REPO_NAME="$CI_REPO_NAME"
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ DEV_ENV_WORK_DIR := /opt/drycc/go/src/${REPO_PATH}
66
77DIST_DIR ?= _dist
88
9- DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
9+ DEV_ENV_CMD := podman run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
1010
1111bootstrap :
1212 ${DEV_ENV_CMD} go mod vendor
1313
14- # This is supposed to be run within a docker container
14+ # This is supposed to be run within a container
1515build :
1616 ${DEV_ENV_CMD} scripts/build ${VERSION}
1717
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ $ mv drycc /usr/local/bin
3636
3737### From Scratch on OS X and Linux
3838
39- To compile the client from scratch, ensure you have Docker installed and run
39+ To compile the client from scratch, ensure you have Container installed and run
4040
4141 $ make
4242
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Usage: drycc builds:create <image> [options]
7474
7575Arguments:
7676 <image>
77- A fully-qualified docker image, either from Docker Hub (e.g. drycc/example-go:latest)
77+ A fully-qualified container image, either from Drycc Registry (e.g. registry.drycc.cc/ drycc/example-go:latest)
7878 or from an in-house registry (e.g. myregistry.example.com:5000/example-go:latest).
7979 This image must include the tag.
8080
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Options:
6161func registrySet (argv []string , cmdr cmd.Commander ) error {
6262 usage := `
6363Sets registry information for an application. These credentials are the same as those used for
64- 'docker login' to the private registry.
64+ 'podmain login' to the private registry.
6565
6666Usage: drycc registry:set [options] <key>=<value>...
6767
You can’t perform that action at this time.
0 commit comments