一个简洁美观的每周任务管理工具,帮助您高效规划和管理一周的待办事项
docker run -d --name weektodo -p 8000:80 aliuq/weektodo:latest
访问 http://localhost:8000 即可使用
创建 docker-compose.yml 文件:
name: weektodo
services:
weektodo:
image: aliuq/weektodo:latest
container_name: weektodo
restart: unless-stopped
ports:
- '8000:80'
运行服务:
docker-compose up -d
# 克隆仓库
git clone https://github.com/aliuq/apps-image.git
cd apps-image/apps/weektodo
# 构建镜像
docker buildx build -f ./Dockerfile -t weektodo:local --load .
# 运行测试
docker run --rm --name weektodo-local -p 8000:80 weektodo:local
# 显示详细构建日志
docker buildx build --progress=plain -f ./Dockerfile -t weektodo:debug --no-cache --load .
📝 该文档由 AI 辅助生成并整理,如有问题请随时反馈
Content type
Image
Digest
sha256:dce6e6bfe…
Size
11.7 MB
Last updated
over 1 year ago
docker pull aliuq/weektodo