Skip to content

Commit fcd109a

Browse files
committed
docs: add gitea mirror references
1 parent ff6ed25 commit fcd109a

4 files changed

Lines changed: 28 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ cargo install just
2525
npm install -g pnpm
2626

2727
# Clone the repository
28+
# GitHub (primary)
2829
git clone https://github.com/pRizz/opencode-cloud.git
30+
31+
# Gitea (mirror)
32+
git clone https://gitea.com/pRizz/opencode-cloud.git
2933
cd opencode-cloud
3034

3135
# Install dependencies

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# opencode-cloud
22

33
[![CI](https://github.com/pRizz/opencode-cloud/actions/workflows/ci.yml/badge.svg)](https://github.com/pRizz/opencode-cloud/actions/workflows/ci.yml)
4+
[![Mirror](https://img.shields.io/badge/mirror-gitea-blue?logo=gitea)](https://gitea.com/pRizz/opencode-cloud)
45
[![crates.io](https://img.shields.io/crates/v/opencode-cloud.svg)](https://crates.io/crates/opencode-cloud)
56
[![GHCR](https://img.shields.io/badge/ghcr.io-sandbox-blue?logo=github)](https://github.com/pRizz/opencode-cloud/pkgs/container/opencode-cloud-sandbox)
67
[![Docker Hub](https://img.shields.io/docker/v/prizz/opencode-cloud-sandbox?label=docker&sort=semver)](https://hub.docker.com/r/prizz/opencode-cloud-sandbox)
@@ -9,7 +10,7 @@
910
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1011

1112
> [!WARNING]
12-
> This tool is still a work in progress and is rapidly evolving. Expect frequent updates and breaking changes. Follow updates at https://github.com/pRizz/opencode-cloud. Stability will be announced at some point. Use with caution.
13+
> This tool is still a work in progress and is rapidly evolving. Expect frequent updates and breaking changes. Follow updates at https://github.com/pRizz/opencode-cloud (mirror: https://gitea.com/pRizz/opencode-cloud). Stability will be announced at some point. Use with caution.
1314
1415
A production-ready toolkit for deploying and managing [opencode](https://github.com/anomalyco/opencode) as a persistent cloud service, **sandboxed inside a Docker container** for isolation and security.
1516

@@ -71,7 +72,7 @@ The CLI manages the container lifecycle, so you don't need to interact with Dock
7172

7273
## Docker Images
7374

74-
The sandbox container image is named **`opencode-cloud-sandbox`** (not `opencode-cloud`) to clearly distinguish it from the CLI tool. The preferred way to use and manage the image is via the [opencode-cloud CLI](https://github.com/pRizz/opencode-cloud). It handles image pulling, container setup, and upgrades for you.
75+
The sandbox container image is named **`opencode-cloud-sandbox`** (not `opencode-cloud`) to clearly distinguish it from the CLI tool. The preferred way to use and manage the image is via the opencode-cloud CLI ([GitHub](https://github.com/pRizz/opencode-cloud), mirror: https://gitea.com/pRizz/opencode-cloud). It handles image pulling, container setup, and upgrades for you.
7576

7677
**Why use the CLI?** It configures volumes, ports, and upgrades safely, so you don’t have to manage `docker run` flags or image updates yourself.
7778

@@ -143,15 +144,23 @@ occ start
143144
### From source (install locally)
144145

145146
```bash
147+
# GitHub (primary)
146148
git clone https://github.com/pRizz/opencode-cloud.git
149+
150+
# Gitea (mirror)
151+
git clone https://gitea.com/pRizz/opencode-cloud.git
147152
cd opencode-cloud
148153
cargo install --path packages/cli-rust
149154
```
150155

151156
### From source (development run)
152157

153158
```bash
159+
# GitHub (primary)
154160
git clone https://github.com/pRizz/opencode-cloud.git
161+
162+
# Gitea (mirror)
163+
git clone https://gitea.com/pRizz/opencode-cloud.git
155164
cd opencode-cloud
156165
just build
157166
cargo run -p opencode-cloud -- --version

packages/core/README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# opencode-cloud
22

33
[![CI](https://github.com/pRizz/opencode-cloud/actions/workflows/ci.yml/badge.svg)](https://github.com/pRizz/opencode-cloud/actions/workflows/ci.yml)
4+
[![Mirror](https://img.shields.io/badge/mirror-gitea-blue?logo=gitea)](https://gitea.com/pRizz/opencode-cloud)
45
[![crates.io](https://img.shields.io/crates/v/opencode-cloud.svg)](https://crates.io/crates/opencode-cloud)
56
[![GHCR](https://img.shields.io/badge/ghcr.io-sandbox-blue?logo=github)](https://github.com/pRizz/opencode-cloud/pkgs/container/opencode-cloud-sandbox)
67
[![Docker Hub](https://img.shields.io/docker/v/prizz/opencode-cloud-sandbox?label=docker&sort=semver)](https://hub.docker.com/r/prizz/opencode-cloud-sandbox)
@@ -9,7 +10,7 @@
910
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1011

1112
> [!WARNING]
12-
> This tool is still a work in progress and is rapidly evolving. Expect frequent updates and breaking changes. Follow updates at https://github.com/pRizz/opencode-cloud. Stability will be announced at some point. Use with caution.
13+
> This tool is still a work in progress and is rapidly evolving. Expect frequent updates and breaking changes. Follow updates at https://github.com/pRizz/opencode-cloud (mirror: https://gitea.com/pRizz/opencode-cloud). Stability will be announced at some point. Use with caution.
1314
1415
A production-ready toolkit for deploying and managing [opencode](https://github.com/anomalyco/opencode) as a persistent cloud service, **sandboxed inside a Docker container** for isolation and security.
1516

@@ -71,7 +72,7 @@ The CLI manages the container lifecycle, so you don't need to interact with Dock
7172

7273
## Docker Images
7374

74-
The sandbox container image is named **`opencode-cloud-sandbox`** (not `opencode-cloud`) to clearly distinguish it from the CLI tool. The preferred way to use and manage the image is via the [opencode-cloud CLI](https://github.com/pRizz/opencode-cloud). It handles image pulling, container setup, and upgrades for you.
75+
The sandbox container image is named **`opencode-cloud-sandbox`** (not `opencode-cloud`) to clearly distinguish it from the CLI tool. The preferred way to use and manage the image is via the opencode-cloud CLI ([GitHub](https://github.com/pRizz/opencode-cloud), mirror: https://gitea.com/pRizz/opencode-cloud). It handles image pulling, container setup, and upgrades for you.
7576

7677
**Why use the CLI?** It configures volumes, ports, and upgrades safely, so you don’t have to manage `docker run` flags or image updates yourself.
7778

@@ -143,15 +144,23 @@ occ start
143144
### From source (install locally)
144145

145146
```bash
147+
# GitHub (primary)
146148
git clone https://github.com/pRizz/opencode-cloud.git
149+
150+
# Gitea (mirror)
151+
git clone https://gitea.com/pRizz/opencode-cloud.git
147152
cd opencode-cloud
148153
cargo install --path packages/cli-rust
149154
```
150155

151156
### From source (development run)
152157

153158
```bash
159+
# GitHub (primary)
154160
git clone https://github.com/pRizz/opencode-cloud.git
161+
162+
# Gitea (mirror)
163+
git clone https://gitea.com/pRizz/opencode-cloud.git
155164
cd opencode-cloud
156165
just build
157166
cargo run -p opencode-cloud -- --version

packages/core/src/docker/README.dockerhub.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Opinionated container image for AI-assisted coding with opencode.
44

55
Preferred usage and management is via the opencode-cloud CLI, which handles image pulls, volumes, ports, and upgrades:
6-
https://github.com/pRizz/opencode-cloud
6+
https://github.com/pRizz/opencode-cloud (mirror: https://gitea.com/pRizz/opencode-cloud)
77

88
## What is included
99

@@ -66,4 +66,5 @@ The Docker image builds opencode directly from the fork and runs the web server
6666
## Source
6767

6868
- Repository: https://github.com/pRizz/opencode-cloud
69+
- Mirror: https://gitea.com/pRizz/opencode-cloud
6970
- Dockerfile: packages/core/src/docker/Dockerfile

0 commit comments

Comments
 (0)