Container images for Posit Package Manager.
Note
These images are in preview as Posit migrates container images from rstudio/rstudio-docker-products. The existing images remain supported.
| Tool | Required for | Install |
|---|---|---|
| Docker | Running containers locally | Get Docker |
| Helm | Deploying on Kubernetes | Install Helm |
| kubectl | Deploying on Kubernetes | Install kubectl |
| Product license | Running Package Manager | Licensing FAQ |
| Image | Docker Hub | GitHub Container Registry |
|---|---|---|
| package-manager | docker.io/posit/package-manager |
ghcr.io/posit-dev/package-manager |
Additional Posit container images are published to Docker Hub and GitHub Container Registry.
The fastest way to get started is to pull and run a pre-built image.
- Posit Package Manager — Quick Start, configuration, and environment variables
See the Package Manager installation guide for full setup instructions.
Use the Posit Package Manager Helm chart to deploy on Kubernetes. These instructions work for both ARM and x86_64 (AMD64) Kubernetes nodes.
helm repo add rstudio https://helm.rstudio.com
helm repo updateCreate a Kubernetes secret from your license file, then configure the chart in your values.yaml:
kubectl create secret generic posit-package-manager-license \
--from-file=license.lic=/path/to/license.licimage:
repository: ghcr.io/posit-dev/package-manager
tag: "2025.12.0"
license:
file:
secret: posit-package-manager-licenseInstall Package Manager with Helm:
helm upgrade --install package-manager rstudio/rstudio-pm --values values.yamlSee the full chart documentation for all available values.
You can interact with this repository in multiple ways:
- Build container images directly from the Containerfile.
- Use the
bakeryCLI to manage and build container images. - Extend the functionality by using the Minimal base image (see examples).
You can build OCI container images from the definitions in this repository using one of the following container build tools:
The root of the bakery project is used as the build context for each Containerfile.
Here, the bakery.yaml file, or project, is in the root of this repository.
PPM_VERSION="2025.12"
# Build the standard Package Manager image using docker
docker buildx build \
--tag package-manager:${PPM_VERSION} \
--file package-manager/${PPM_VERSION}/Containerfile.ubuntu2404.std \
.
# Build the minimal Package Manager image using buildah
buildah build \
--tag package-manager:${PPM_VERSION} \
--file package-manager/${PPM_VERSION}/Containerfile.ubuntu2404.min \
.
# Build the minimal Package Manager image using podman
podman build \
--tag package-manager:${PPM_VERSION} \
--file package-manager/${PPM_VERSION}/Containerfile.ubuntu2404.min \
.The structure and contents of this repository were created following the steps in bakery usage.
Additional documentation:
- Configuration Reference —
bakery.yamlschema and options - Templating Reference — Jinja2 macros for Containerfile templates
- CI Workflows — Shared GitHub Actions workflows for building and pushing images
Build prerequisites
-
gh (required while repositories are private)
-
bakeryjust install bakery
-
gossanddgossfor running image validation testsjust install-goss
By default, bakery creates an ephemeral JSON bakefile to render all containers in parallel.
bakery buildYou can view the bake plan using bakery build --plan.
You can use CLI flags to build only a subset of images in the project.
After building the container images, run the test suite for all images:
bakery run dgossYou can use CLI flags to limit the tests to run against a subset of images.
This repository is part of the Posit Container Images ecosystem. To extend the Minimal image with additional languages or system dependencies, see the extending examples. For shared build tooling and CI workflows, see images-shared.
We invite you to join us on GitHub Discussions to ask questions and share feedback.
If you encounter any issues or have any questions, please open an issue. We appreciate your feedback.
We expect all contributors to adhere to the project's Code of Conduct and create a positive and inclusive community.
Posit Container Images and associated tooling are licensed under the MIT License