Skip to content

Commit e3817d8

Browse files
committed
chore(workflow-cli): use podman replace docker
1 parent 5a0af0a commit e3817d8

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.woodpecker/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ DEV_ENV_WORK_DIR := /opt/drycc/go/src/${REPO_PATH}
66

77
DIST_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

1111
bootstrap:
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
1515
build:
1616
${DEV_ENV_CMD} scripts/build ${VERSION}
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

parser/builds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Usage: drycc builds:create <image> [options]
7474
7575
Arguments:
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

parser/registry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Options:
6161
func registrySet(argv []string, cmdr cmd.Commander) error {
6262
usage := `
6363
Sets 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
6666
Usage: drycc registry:set [options] <key>=<value>...
6767

0 commit comments

Comments
 (0)