rename cua-docker-xfce to cua-xfce

This commit is contained in:
Dillon DuPont
2025-10-15 15:38:55 -04:00
parent d8edc3bb51
commit b9e73fc622
4 changed files with 7 additions and 7 deletions

View File

@@ -63,7 +63,7 @@ Cua provides two Docker images for running Linux desktops:
2. Pull the CUA XFCE image
```bash
docker pull --platform=linux/amd64 trycua/cua-docker-xfce:latest
docker pull --platform=linux/amd64 trycua/cua-xfce:latest
```
3. Connect with Computer
@@ -74,7 +74,7 @@ Cua provides two Docker images for running Linux desktops:
computer = Computer(
os_type="linux",
provider_type="docker",
image="trycua/cua-docker-xfce:latest",
image="trycua/cua-xfce:latest",
name="my-xfce-container"
)

View File

@@ -47,7 +47,7 @@ Choose how you want to run your cua computer. **Cloud Sandbox is recommended** f
2. Pull the CUA XFCE container (lightweight desktop)
```bash
docker pull --platform=linux/amd64 trycua/cua-docker-xfce:latest
docker pull --platform=linux/amd64 trycua/cua-xfce:latest
```
Or use KASM for a full-featured desktop:

View File

@@ -56,7 +56,7 @@ class DockerProvider(BaseVMProvider):
image: Docker image to use (default: "trycua/cua-ubuntu:latest")
Supported images:
- "trycua/cua-ubuntu:latest" (Kasm-based)
- "trycua/cua-docker-xfce:latest" (vanilla XFCE)
- "trycua/cua-xfce:latest" (vanilla XFCE)
verbose: Enable verbose logging
ephemeral: Use ephemeral (temporary) storage
vnc_port: Port for VNC interface (default: 6901)

View File

@@ -52,7 +52,7 @@ docker login
# Build and push for amd64 and arm64 in one step
docker buildx build \
--platform linux/amd64,linux/arm64 \
-t trycua/cua-docker-xfce:latest \
-t trycua/cua-xfce:latest \
--push \
.
```
@@ -111,7 +111,7 @@ from computer import Computer
computer = Computer(
os_type="linux",
provider_type="docker",
image="trycua/cua-docker-xfce:latest", # Use docker-xfce instead of Kasm
image="trycua/cua-xfce:latest", # Use docker-xfce instead of Kasm
display="1024x768",
memory="4GB",
cpu="2"
@@ -147,7 +147,7 @@ computer_kasm = Computer(
computer_xfce = Computer(
os_type="linux",
provider_type="docker",
image="trycua/cua-docker-xfce:latest", # docker-xfce image
image="trycua/cua-xfce:latest", # docker-xfce image
)
```