Unofficial - Create code snippets, browse AI prompts, create extension icons and more.
4.0K
Create beautiful images of your code - Turn your code into stunning visuals
docker run -d --name rayso -p 3000:3000 aliuq/rayso:latest
# 测试
docker run --rm --name rayso -p 3000:3000 aliuq/rayso:latest
访问 http://localhost:3000 即可使用
创建 docker-compose.yml 文件:
name: rayso
services:
rayso:
image: aliuq/rayso:latest
container_name: rayso
restart: unless-stopped
ports:
- '3000:3000'
运行服务:
docker-compose up -d
# 克隆仓库
git clone https://github.com/aliuq/apps-image.git
cd apps-image/apps/rayso
# 构建镜像
docker buildx build -f ./Dockerfile -t rayso:local --load .
# 运行测试
docker run --rm --name rayso-local -p 3000:3000 rayso:local
# 以开发模式运行(显示构建日志)
docker buildx build --progress=plain -f ./Dockerfile -t rayso:debug --load .
📝 该文档由 AI 辅助生成并整理,如有问题请随时反馈
Content type
Image
Digest
sha256:6f5e50ec4…
Size
107.5 MB
Last updated
22 days ago
docker pull aliuq/rayso