Skip to contents

Creates a dockerignore template with patterns to ignore common raw data directories.

Usage

dk_template_ignore_raw_data(.dockerignore = NULL)

Arguments

.dockerignore

Optional existing dockerignore object to add patterns to

Value

A dockerignore object with raw data directory patterns

Details

This template adds patterns to ignore common raw data directories following the usethis and Cookiecutter Data Science conventions:

  • data-raw/

  • data/raw/: Raw, immutable data

  • data/interim/: Intermediate data that has been transformed

  • data/processed/: The final, canonical data sets for modeling

  • data/external/: Data from third party sources

Raw data is often large and not needed in the Docker image. Instead, it's usually better to mount the data as a volume at runtime.

Examples

# Create a new dockerignore with raw data patterns
di <- dk_template_ignore_raw_data()

# Add raw data patterns to an existing dockerignore
di <- dockerignore() |>
  di_add("*.log") |>
  dk_template_ignore_raw_data()