Skip to content

Commit 1769a87

Browse files
committed
Use product license terminology and license file env var
Replace "Posit license" with "product license" to match the terminology used in the official product documentation. Add LICENSE_FILE env var to Quick Starts so all user-editable values are grouped at the top of each code block.
1 parent 3cc110c commit 1769a87

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Container images for [Posit Workbench](https://docs.posit.co/ide/server-pro).
1212
| [Docker](https://docs.docker.com/get-docker/) | Running containers locally | [Get Docker](https://docs.docker.com/get-docker/) |
1313
| [Helm](https://helm.sh/docs/intro/install/) | Deploying on Kubernetes | [Install Helm](https://helm.sh/docs/intro/install/) |
1414
| [kubectl](https://kubernetes.io/docs/tasks/tools/) | Deploying on Kubernetes | [Install kubectl](https://kubernetes.io/docs/tasks/tools/) |
15-
| Posit License | Running Posit Workbench | [Licensing FAQ](https://docs.posit.co/licensing/licensing-faq.html) |
15+
| Product license | Running Posit Workbench | [Licensing FAQ](https://docs.posit.co/licensing/licensing-faq.html) |
1616

1717
## Images
1818

workbench/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ This container image provides [Posit Workbench](https://docs.posit.co/ide/server
1010
```bash
1111
PWB_VERSION="2026.01.1"
1212
PWB_IMAGE="ghcr.io/posit-dev/workbench" # or docker.io/posit/workbench
13+
PWB_LICENSE="/path/to/license.lic"
1314
docker run -d \
1415
--name workbench \
1516
-p 8787:8787 \
1617
-e PWB_TESTUSER=posit \
1718
-e PWB_TESTUSER_PASSWD=posit \
18-
-v /path/to/license.lic:/etc/rstudio-server/license.lic \
19+
-v ${PWB_LICENSE}:/etc/rstudio-server/license.lic \
1920
${PWB_IMAGE}:${PWB_VERSION}
2021
```
2122

@@ -54,7 +55,7 @@ Tag formats:
5455

5556
### License Activation
5657

57-
A valid [Posit license](https://docs.posit.co/licensing/licensing-faq.html) is required. Posit recommends license file activation. Choose one method:
58+
A [product license](https://docs.posit.co/licensing/licensing-faq.html) is required. Posit recommends license file activation. Choose one method:
5859

5960
**Option 1: License File (Recommended)**
6061
```bash

0 commit comments

Comments
 (0)