Skip to content

Commit c04a11d

Browse files
committed
Update Docker image registry references to use githubnext
Signed-off-by: Jiaxiao (mossaka) Zhou <duibao55328@gmail.com>
1 parent f1439e2 commit c04a11d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ sudo awf --help
120120
The firewall uses two Docker containers (Squid proxy and Copilot execution environment). By default, the CLI pulls pre-built images from GitHub Container Registry (GHCR) for faster startup and easier distribution.
121121

122122
**Default behavior (GHCR images):**
123-
- Images are automatically pulled from `ghcr.io/mossaka/gh-aw-firewall/squid:latest` and `ghcr.io/mossaka/gh-aw-firewall/copilot:latest`
123+
- Images are automatically pulled from `ghcr.io/githubnext/gh-aw-firewall/squid:latest` and `ghcr.io/githubnext/gh-aw-firewall/copilot:latest`
124124
- Published during releases via `.github/workflows/release.yml`
125125
- Users don't need to build containers locally
126126

@@ -130,7 +130,7 @@ The firewall uses two Docker containers (Squid proxy and Copilot execution envir
130130
- Example: `sudo awf --build-local --allow-domains github.com 'curl https://github.com'`
131131

132132
**Custom registry/tag:**
133-
- `--image-registry <registry>` - Use a different registry (default: `ghcr.io/mossaka/gh-aw-firewall`)
133+
- `--image-registry <registry>` - Use a different registry (default: `ghcr.io/githubnext/gh-aw-firewall`)
134134
- `--image-tag <tag>` - Use a specific version tag (default: `latest`)
135135
- Example: `sudo awf --image-tag v0.2.0 --allow-domains github.com 'curl https://github.com'`
136136

docs/RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Each release includes:
8787
- `checksums.txt` - SHA256 checksums for all files
8888

8989
### GitHub Container Registry (GHCR)
90-
Docker images are published to `ghcr.io/mossaka/gh-aw-firewall`:
90+
Docker images are published to `ghcr.io/githubnext/gh-aw-firewall`:
9191
- `squid:<version>` and `squid:latest` - Squid proxy container
9292
- `copilot:<version>` and `copilot:latest` - Copilot execution environment
9393

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ program
6868
.option(
6969
'--image-registry <registry>',
7070
'Container image registry',
71-
'ghcr.io/mossaka/gh-aw-firewall'
71+
'ghcr.io/githubnext/gh-aw-firewall'
7272
)
7373
.option(
7474
'--image-tag <tag>',

src/docker-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export function generateDockerCompose(
119119

120120
// Default to GHCR images unless buildLocal is explicitly set
121121
const useGHCR = !config.buildLocal;
122-
const registry = config.imageRegistry || 'ghcr.io/mossaka/gh-aw-firewall';
122+
const registry = config.imageRegistry || 'ghcr.io/githubnext/gh-aw-firewall';
123123
const tag = config.imageTag || 'latest';
124124

125125
// Squid service configuration

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface WrapperConfig {
88
logLevel: LogLevel;
99
keepContainers: boolean;
1010
workDir: string;
11-
imageRegistry?: string; // Default: 'ghcr.io/mossaka/gh-aw-firewall'
11+
imageRegistry?: string; // Default: 'ghcr.io/githubnext/gh-aw-firewall'
1212
imageTag?: string; // Default: 'latest'
1313
buildLocal?: boolean; // Default: false (use GHCR images)
1414
additionalEnv?: Record<string, string>; // Additional environment variables to pass to container

0 commit comments

Comments
 (0)