@opencode-cloud/core 6.3.1 → 6.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +1 -1
- package/README.md +1 -4
- package/package.json +1 -1
- package/src/docker/Dockerfile +2 -2
- package/src/docker/README.dockerhub.md +2 -3
package/Cargo.toml
CHANGED
package/README.md
CHANGED
|
@@ -41,7 +41,6 @@ Credentials: `docs/deploy/aws.md#retrieving-credentials`
|
|
|
41
41
|
- **Service lifecycle commands** - start, stop, restart, status, logs
|
|
42
42
|
- **Platform service integration** - systemd (Linux) / launchd (macOS) for auto-start on boot
|
|
43
43
|
- **Remote host management** - Manage opencode containers on remote servers via SSH
|
|
44
|
-
- **Web-based admin** - Cockpit integration for container administration
|
|
45
44
|
|
|
46
45
|
## How it works
|
|
47
46
|
|
|
@@ -190,9 +189,7 @@ occ config show
|
|
|
190
189
|
|
|
191
190
|
## Authentication
|
|
192
191
|
|
|
193
|
-
opencode-cloud uses **PAM (Pluggable Authentication Modules)** for authentication. Users created via `occ user add`
|
|
194
|
-
- **opencode web UI** - Access the coding interface
|
|
195
|
-
- **Cockpit** - System administration interface
|
|
192
|
+
opencode-cloud uses **PAM (Pluggable Authentication Modules)** for authentication. Users created via `occ user add` authenticate to the opencode web UI.
|
|
196
193
|
|
|
197
194
|
### Creating Users
|
|
198
195
|
|
package/package.json
CHANGED
package/src/docker/Dockerfile
CHANGED
|
@@ -279,7 +279,7 @@ RUN mkdir -p /home/opencode/.cargo/registry /home/opencode/.cargo/git \
|
|
|
279
279
|
|
|
280
280
|
# yq v4.50.1 (2025-12-14) - YAML processor
|
|
281
281
|
# Disabled temporarily to reduce Docker build time.
|
|
282
|
-
# RUN curl -sL https://github.com/mikefarah/yq/releases/download/v4.
|
|
282
|
+
# RUN curl -sL https://github.com/mikefarah/yq/releases/download/v4.52.2/yq_linux_$(dpkg --print-architecture) -o /home/opencode/.local/bin/yq \
|
|
283
283
|
# && chmod +x /home/opencode/.local/bin/yq
|
|
284
284
|
|
|
285
285
|
# Install direnv (2026-01-22)
|
|
@@ -385,7 +385,7 @@ USER opencode
|
|
|
385
385
|
# # cargo-audit 0.22.0 - security audit
|
|
386
386
|
# # cargo-deny 0.19.0 - dependency linter
|
|
387
387
|
# RUN . /home/opencode/.cargo/env \
|
|
388
|
-
# && cargo install --locked cargo-nextest@0.9.
|
|
388
|
+
# && cargo install --locked cargo-nextest@0.9.124 cargo-audit@0.22.0 cargo-deny@0.19.0
|
|
389
389
|
#
|
|
390
390
|
# # Install mold fast linker (2026-01-22)
|
|
391
391
|
# USER root
|
|
@@ -9,7 +9,6 @@ Opinionated container image for AI-assisted coding with opencode.
|
|
|
9
9
|
- mise-managed runtimes (Node.js LTS, Python 3.12, Go 1.24)
|
|
10
10
|
- Rust toolchain via rustup
|
|
11
11
|
- Core CLI utilities (ripgrep, eza, jq, git, etc.)
|
|
12
|
-
- Cockpit web console for administration
|
|
13
12
|
- opencode preinstalled with the GSD plugin
|
|
14
13
|
|
|
15
14
|
## Tags
|
|
@@ -28,10 +27,10 @@ docker pull ghcr.io/prizz/opencode-cloud-sandbox:latest
|
|
|
28
27
|
Run the container:
|
|
29
28
|
|
|
30
29
|
```
|
|
31
|
-
docker run --rm -it -p 3000:3000
|
|
30
|
+
docker run --rm -it -p 3000:3000 ghcr.io/prizz/opencode-cloud-sandbox:latest
|
|
32
31
|
```
|
|
33
32
|
|
|
34
|
-
The opencode web UI is available at `http://localhost:3000`.
|
|
33
|
+
The opencode web UI is available at `http://localhost:3000`.
|
|
35
34
|
|
|
36
35
|
## opencode build and serve flow
|
|
37
36
|
|