From 64927534b5bd6f0942d205a4b143df1cdc364192 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Thu, 14 Aug 2025 09:58:18 -0400 Subject: [PATCH] include push steps --- libs/kasm/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/libs/kasm/README.md b/libs/kasm/README.md index b529e947..dc91fbe1 100644 --- a/libs/kasm/README.md +++ b/libs/kasm/README.md @@ -19,6 +19,31 @@ Containerized virtual desktop for Computer-Using Agents (CUA). Utilizes Kasm's M docker build -t cua-ubuntu:latest . ``` +### Pushing to Registry + +To push the container to a Docker registry: + +```bash +# Tag for your registry (replace with your registry URL) +docker tag cua-ubuntu:latest your-registry.com/cua-ubuntu:latest + +# Push to registry +docker push your-registry.com/cua-ubuntu:latest +``` + +For Docker Hub: + +```bash +# Tag for Docker Hub (replace 'trycua' with your Docker Hub username) +docker tag cua-ubuntu:latest trycua/cua-ubuntu:latest + +# Login to Docker Hub +docker login + +# Push to Docker Hub +docker push trycua/cua-ubuntu:latest +``` + ### Running the Container Manually ```bash