@@ -11,14 +11,14 @@ The following images can be used for ARM64 deployments:
1111| Image | Address | Description |
1212| -------| ---------| -------------|
1313| ClawManager Main App | ` ghcr.io/yuan-lab-llm/clawmanager:latest ` | Official multi-platform image with ARM64 support |
14- | Skill Scanner | ` ghcr.io/xty00 /skill-scanner:latest ` | ARM64 version (official repo has no ARM64 support) |
14+ | Skill Scanner | ` ghcr.io/yuan-lab-llm /skill-scanner:latest ` | Official image now supports ARM64 |
1515
1616### Using Pre-built Images
1717
1818``` bash
1919# Pull ARM64 images
2020docker pull ghcr.io/yuan-lab-llm/clawmanager:latest --platform linux/arm64
21- docker pull ghcr.io/xty00 /skill-scanner:latest --platform linux/arm64
21+ docker pull ghcr.io/yuan-lab-llm /skill-scanner:latest --platform linux/arm64
2222```
2323
2424## Building ARM64 Images from Source
@@ -37,11 +37,11 @@ CGO_ENABLED=0 go build -ldflags="-s -w -extldflags=-static" -o bin/clawreef-serv
3737docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/your-name/clawmanager:latest --push .
3838```
3939
40- ### skill-scanner ARM64 Build
40+ ### skill-scanner ARM64 Build (Optional)
4141
42- The skill-scanner official repo ( ` ghcr.io/yuan-lab-llm/skill-scanner ` ) only supports amd64 platform .
42+ ` ghcr.io/yuan-lab-llm/skill-scanner:latest ` now supports ARM64 .
4343
44- ARM64 users need to build from source :
44+ Build from source only if you need a customized image :
4545
4646``` bash
4747# Clone the repo
@@ -69,7 +69,7 @@ In `clawmanager.yaml`, make sure the image addresses support ARM64:
6969image : ghcr.io/yuan-lab-llm/clawmanager:latest
7070
7171# skill-scanner (if needed)
72- image : ghcr.io/xty00 /skill-scanner:latest
72+ image : ghcr.io/yuan-lab-llm /skill-scanner:latest
7373` ` `
7474
7575### Database Initialization
@@ -94,11 +94,11 @@ FLUSH PRIVILEGES;
9494- ** Platforms** : ` linux/amd64 ` , ` linux/arm64 `
9595- ** Deployment impact** : ARM64 nodes automatically pull the matching main app image without a separate ARM-only tag
9696
97- ### skill-scanner Official Image Has No ARM64 Support
97+ ### skill-scanner Official Image Supports ARM64
9898
99- - ** Problem ** : ` ghcr.io/yuan-lab-llm/skill-scanner:latest ` only provides amd64 platform
100- - ** Solution ** : Use third-party ARM64 image ` ghcr.io/xty00/skill-scanner:latest `
101- - ** Alternative ** : Build from source (see above)
99+ - ** Status ** : ` ghcr.io/yuan-lab-llm/skill-scanner:latest ` now provides ARM64 image
100+ - ** Deployment impact ** : ARM64 nodes automatically pull the matching architecture image
101+ - ** Recommendation ** : pin a specific tag instead of ` latest ` for reproducible deployments
102102
103103### ARM64 Device Performance Notes
104104
0 commit comments