羊了个羊纯前端实现版,支持自定义关卡、图案和无限道具的休闲益智游戏
docker run -d --name yulegeyu -p 8000:80 aliuq/yulegeyu:latest
访问 http://localhost:8000 即可开始游戏
创建 docker-compose.yml 文件:
name: yulegeyu
services:
yulegeyu:
image: aliuq/yulegeyu:latest
container_name: yulegeyu
restart: unless-stopped
ports:
- '8000:80'
运行服务:
docker-compose up -d
# 克隆仓库
git clone https://github.com/aliuq/apps-image.git
cd apps-image/apps/yulegeyu
# 构建镜像
docker buildx build -f ./Dockerfile -t yulegeyu:local --load .
# 运行测试
docker run --rm --name yulegeyu-local -p 8000:80 yulegeyu:local
# 显示详细构建日志
docker buildx build --progress=plain -f ./Dockerfile -t yulegeyu:debug --no-cache --load .
📝 该文档由 AI 辅助生成并整理,如有问题请随时反馈
Content type
Image
Digest
sha256:0328cd107…
Size
20.1 MB
Last updated
over 1 year ago
docker pull aliuq/yulegeyu