Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ GEMINI_API_KEY=
# External port for the OpenCode web endpoint (default: 4097)
OPENCODE_PORT=4097

# OpenCode CLI version to install in the container (default: 1.18.3)
# OpenCode CLI version to install in the container (default: 1.18.11)
# Check https://www.npmjs.com/package/opencode-ai for available versions
OPENCODE_VERSION=1.18.3
OPENCODE_VERSION=1.18.11

# ─── Workspace ─────────────────────────────────────────────────────────────────
# Primary host directory mounted as /workspace in the container
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
args:
# OpenCode CLI version — override via .env (OPENCODE_VERSION=1.x.y)
# Defaults to Dockerfile ARG if unset
OPENCODE_VERSION: ${OPENCODE_VERSION:-1.18.3}
OPENCODE_VERSION: ${OPENCODE_VERSION:-1.18.11}
container_name: opencode
env_file: .env
ports:
Expand Down
2 changes: 1 addition & 1 deletion opencode_app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="opencode-config-template" \
org.opencontainers.image.description="OpenCode standalone web endpoint - configurable agent/skill runner" \
org.opencontainers.image.source="https://github.com/darellchua2/opencode-config-template"

ARG OPENCODE_VERSION=1.18.3
ARG OPENCODE_VERSION=1.18.11

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
Loading