2 Repos
Adding external files, directories, or remote content directly into a container filesystem.
Distinct from Container Filesystem Initialization: Distinct from initialization: focuses on the transfer and injection of specific content into an existing filesystem root.
Explore 2 awesome GitHub repositories matching data & databases · Content Injection. Refine with filters or upvote what's useful.
Buildah is a tool for creating OCI-compliant container images without requiring a background daemon process. It functions as a daemonless image constructor and distribution tool, allowing users to build, push, and pull images between local storage and remote registries. The project distinguishes itself by supporting unprivileged image building through the use of user namespaces and rootless mode. It enables direct modification of container root filesystems by mounting them to the host, allowing images to be treated as directories that can be manipulated via standard shell commands or scripts.
Allows adding local files or remote content directly into a container filesystem during image construction.
env is a Go library that reads environment variables and populates the fields of a Go struct according to tag directives. It uses reflection to iterate over struct types and tags at runtime, mapping environment variable names to struct fields and applying parsing behavior defined in struct tags. The library supports required field validation, returning errors when marked fields are missing or empty after parsing. It also provides default value fallback from struct tags when environment variables are not set, environment variable expansion that recursively substitutes references within values,
Reads file contents from paths specified in environment variables and assigns them directly to struct fields.