Skip to contents

Build all Docker tags

Usage

dockerBuildAllTags(local, remote, days = 2L, force = FALSE)

Arguments

local

character(1). Docker image repository directory.

remote

character(1). Remote Docker image repository URL (e.g. ECR or DockerHub).

days

numeric(1). Number of days to allow since last build.

force

logical(1). Force rebuild.

Value

Invisible logical(1).

Note

Updated 2023-03-28.

Examples

## > local <- file.path(
## >     "~",
## >     "monorepo",
## >     "docker",
## >     "acidgenomics",
## >     "koopa"
## > )
## > remote <- "public.ecr.aws/acidgenomics/koopa"
## > dockerBuildAllTags(local = local, remote = remote)