├── .Rbuildignore ├── .devcontainer └── devcontainer.json ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── dockerfile-core.R ├── dockerfile-instructions.R ├── dockerfile-io.R ├── dockerfile-modifications.R ├── dockerignore-core.R ├── dockerignore-instructions.R ├── dockerignore-io.R ├── dockerignore-templates.R ├── dockitect-from-environment.R ├── dockitect-package.R ├── dockitect-templates.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── dockitect.Rproj ├── man ├── add_dockerfile_line.Rd ├── c.dockerignore.Rd ├── check_dockerfile.Rd ├── check_dockerignore.Rd ├── determine_linux_distribution.Rd ├── determine_package_manager.Rd ├── dfi_add.Rd ├── dfi_arg.Rd ├── dfi_cmd.Rd ├── dfi_copy.Rd ├── dfi_entrypoint.Rd ├── dfi_env.Rd ├── dfi_expose.Rd ├── dfi_from.Rd ├── dfi_healthcheck.Rd ├── dfi_label.Rd ├── dfi_maintainer.Rd ├── dfi_onbuild.Rd ├── dfi_run.Rd ├── dfi_shell.Rd ├── dfi_stopsignal.Rd ├── dfi_user.Rd ├── dfi_volume.Rd ├── dfi_workdir.Rd ├── dfm_add_line.Rd ├── dfm_group_similar.Rd ├── dfm_move_line.Rd ├── dfm_remove_line.Rd ├── dfm_replace_line.Rd ├── dfm_sort_by_instruction.Rd ├── di_add.Rd ├── di_remove.Rd ├── di_replace.Rd ├── dk_add_sysreqs.Rd ├── dk_from_description.Rd ├── dk_from_renv.Rd ├── dk_from_script.Rd ├── dk_from_session.Rd ├── dk_register_template.Rd ├── dk_template_base.Rd ├── dk_template_custom.Rd ├── dk_template_ignore_common.Rd ├── dk_template_ignore_data.Rd ├── dk_template_ignore_editor.Rd ├── dk_template_ignore_git.Rd ├── dk_template_ignore_node.Rd ├── dk_template_ignore_os.Rd ├── dk_template_ignore_packrat.Rd ├── dk_template_ignore_python.Rd ├── dk_template_ignore_r.Rd ├── dk_template_ignore_raw_data.Rd ├── dk_template_ignore_renv.Rd ├── dk_template_plumber.Rd ├── dk_template_shiny.Rd ├── dockerfile.Rd ├── dockerignore.Rd ├── dockitect-package.Rd ├── figures │ ├── dockitect-animated-logo.svg │ └── dockitect-logo.svg ├── generate_pkg_install_cmd.Rd ├── has_instruction.Rd ├── is_dockerfile.Rd ├── is_dockerignore.Rd ├── map_to_sysreqs_platform.Rd ├── print.dockerfile.Rd ├── print.dockerignore.Rd ├── read_dockerfile.Rd ├── read_dockerignore.Rd ├── template_registry.Rd ├── write_dockerfile.Rd └── write_dockerignore.Rd ├── tests ├── testthat.R └── testthat │ ├── setup.R │ ├── test-dockerfile-core.R │ ├── test-dockerfile-instructions.R │ ├── test-dockerfile-io.R │ ├── test-dockerfile-modifications.R │ ├── test-dockerignore-core.R │ ├── test-dockerignore-instructions.R │ ├── test-dockerignore-io.R │ ├── test-dockerignore-templates.R │ ├── test-dockitect-from-environment.R │ ├── test-dockitect-templates.R │ └── test-utils.R └── vignettes ├── .gitignore ├── getting-started-with-dockitect.qmd └── making-a-dockitect-dockerfile-into-a-running-container.qmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dockerfile-core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerfile-core.R -------------------------------------------------------------------------------- /R/dockerfile-instructions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerfile-instructions.R -------------------------------------------------------------------------------- /R/dockerfile-io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerfile-io.R -------------------------------------------------------------------------------- /R/dockerfile-modifications.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerfile-modifications.R -------------------------------------------------------------------------------- /R/dockerignore-core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerignore-core.R -------------------------------------------------------------------------------- /R/dockerignore-instructions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerignore-instructions.R -------------------------------------------------------------------------------- /R/dockerignore-io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerignore-io.R -------------------------------------------------------------------------------- /R/dockerignore-templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockerignore-templates.R -------------------------------------------------------------------------------- /R/dockitect-from-environment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockitect-from-environment.R -------------------------------------------------------------------------------- /R/dockitect-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockitect-package.R -------------------------------------------------------------------------------- /R/dockitect-templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/dockitect-templates.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /dockitect.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/dockitect.Rproj -------------------------------------------------------------------------------- /man/add_dockerfile_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/add_dockerfile_line.Rd -------------------------------------------------------------------------------- /man/c.dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/c.dockerignore.Rd -------------------------------------------------------------------------------- /man/check_dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/check_dockerfile.Rd -------------------------------------------------------------------------------- /man/check_dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/check_dockerignore.Rd -------------------------------------------------------------------------------- /man/determine_linux_distribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/determine_linux_distribution.Rd -------------------------------------------------------------------------------- /man/determine_package_manager.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/determine_package_manager.Rd -------------------------------------------------------------------------------- /man/dfi_add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_add.Rd -------------------------------------------------------------------------------- /man/dfi_arg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_arg.Rd -------------------------------------------------------------------------------- /man/dfi_cmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_cmd.Rd -------------------------------------------------------------------------------- /man/dfi_copy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_copy.Rd -------------------------------------------------------------------------------- /man/dfi_entrypoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_entrypoint.Rd -------------------------------------------------------------------------------- /man/dfi_env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_env.Rd -------------------------------------------------------------------------------- /man/dfi_expose.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_expose.Rd -------------------------------------------------------------------------------- /man/dfi_from.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_from.Rd -------------------------------------------------------------------------------- /man/dfi_healthcheck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_healthcheck.Rd -------------------------------------------------------------------------------- /man/dfi_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_label.Rd -------------------------------------------------------------------------------- /man/dfi_maintainer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_maintainer.Rd -------------------------------------------------------------------------------- /man/dfi_onbuild.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_onbuild.Rd -------------------------------------------------------------------------------- /man/dfi_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_run.Rd -------------------------------------------------------------------------------- /man/dfi_shell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_shell.Rd -------------------------------------------------------------------------------- /man/dfi_stopsignal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_stopsignal.Rd -------------------------------------------------------------------------------- /man/dfi_user.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_user.Rd -------------------------------------------------------------------------------- /man/dfi_volume.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_volume.Rd -------------------------------------------------------------------------------- /man/dfi_workdir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfi_workdir.Rd -------------------------------------------------------------------------------- /man/dfm_add_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_add_line.Rd -------------------------------------------------------------------------------- /man/dfm_group_similar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_group_similar.Rd -------------------------------------------------------------------------------- /man/dfm_move_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_move_line.Rd -------------------------------------------------------------------------------- /man/dfm_remove_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_remove_line.Rd -------------------------------------------------------------------------------- /man/dfm_replace_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_replace_line.Rd -------------------------------------------------------------------------------- /man/dfm_sort_by_instruction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dfm_sort_by_instruction.Rd -------------------------------------------------------------------------------- /man/di_add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/di_add.Rd -------------------------------------------------------------------------------- /man/di_remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/di_remove.Rd -------------------------------------------------------------------------------- /man/di_replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/di_replace.Rd -------------------------------------------------------------------------------- /man/dk_add_sysreqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_add_sysreqs.Rd -------------------------------------------------------------------------------- /man/dk_from_description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_from_description.Rd -------------------------------------------------------------------------------- /man/dk_from_renv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_from_renv.Rd -------------------------------------------------------------------------------- /man/dk_from_script.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_from_script.Rd -------------------------------------------------------------------------------- /man/dk_from_session.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_from_session.Rd -------------------------------------------------------------------------------- /man/dk_register_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_register_template.Rd -------------------------------------------------------------------------------- /man/dk_template_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_base.Rd -------------------------------------------------------------------------------- /man/dk_template_custom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_custom.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_common.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_common.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_data.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_editor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_editor.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_git.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_git.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_node.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_node.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_os.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_os.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_packrat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_packrat.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_python.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_python.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_r.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_r.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_raw_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_raw_data.Rd -------------------------------------------------------------------------------- /man/dk_template_ignore_renv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_ignore_renv.Rd -------------------------------------------------------------------------------- /man/dk_template_plumber.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_plumber.Rd -------------------------------------------------------------------------------- /man/dk_template_shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dk_template_shiny.Rd -------------------------------------------------------------------------------- /man/dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dockerfile.Rd -------------------------------------------------------------------------------- /man/dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dockerignore.Rd -------------------------------------------------------------------------------- /man/dockitect-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/dockitect-package.Rd -------------------------------------------------------------------------------- /man/figures/dockitect-animated-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/figures/dockitect-animated-logo.svg -------------------------------------------------------------------------------- /man/figures/dockitect-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/figures/dockitect-logo.svg -------------------------------------------------------------------------------- /man/generate_pkg_install_cmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/generate_pkg_install_cmd.Rd -------------------------------------------------------------------------------- /man/has_instruction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/has_instruction.Rd -------------------------------------------------------------------------------- /man/is_dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/is_dockerfile.Rd -------------------------------------------------------------------------------- /man/is_dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/is_dockerignore.Rd -------------------------------------------------------------------------------- /man/map_to_sysreqs_platform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/map_to_sysreqs_platform.Rd -------------------------------------------------------------------------------- /man/print.dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/print.dockerfile.Rd -------------------------------------------------------------------------------- /man/print.dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/print.dockerignore.Rd -------------------------------------------------------------------------------- /man/read_dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/read_dockerfile.Rd -------------------------------------------------------------------------------- /man/read_dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/read_dockerignore.Rd -------------------------------------------------------------------------------- /man/template_registry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/template_registry.Rd -------------------------------------------------------------------------------- /man/write_dockerfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/write_dockerfile.Rd -------------------------------------------------------------------------------- /man/write_dockerignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/man/write_dockerignore.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerfile-core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerfile-core.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerfile-instructions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerfile-instructions.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerfile-io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerfile-io.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerfile-modifications.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerfile-modifications.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerignore-core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerignore-core.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerignore-instructions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerignore-instructions.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerignore-io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerignore-io.R -------------------------------------------------------------------------------- /tests/testthat/test-dockerignore-templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockerignore-templates.R -------------------------------------------------------------------------------- /tests/testthat/test-dockitect-from-environment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockitect-from-environment.R -------------------------------------------------------------------------------- /tests/testthat/test-dockitect-templates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-dockitect-templates.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | *_files 4 | -------------------------------------------------------------------------------- /vignettes/getting-started-with-dockitect.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/vignettes/getting-started-with-dockitect.qmd -------------------------------------------------------------------------------- /vignettes/making-a-dockitect-dockerfile-into-a-running-container.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/dockitect/HEAD/vignettes/making-a-dockitect-dockerfile-into-a-running-container.qmd --------------------------------------------------------------------------------