{"id":18049276,"url":"https://github.com/doocs/docker-md","last_synced_at":"2025-07-22T11:39:04.176Z","repository":{"id":43088766,"uuid":"452276208","full_name":"doocs/docker-md","owner":"doocs","description":"🐋 doocs/md 项目 的 docker 镜像","archived":false,"fork":false,"pushed_at":"2025-06-29T12:28:30.000Z","size":35,"stargazers_count":60,"open_issues_count":0,"forks_count":20,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-07-21T12:45:12.568Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/doocs.png","metadata":{"funding":{"github":null,"patreon":null,"open_collective":"doocs","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null},"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-01-26T12:58:58.000Z","updated_at":"2025-07-10T06:28:19.000Z","dependencies_parsed_at":"2025-07-17T08:07:31.300Z","dependency_job_id":"39c0299f-eed9-4d60-bc1e-61fd4c7ceeef","html_url":"https://github.com/doocs/docker-md","commit_stats":{"total_commits":17,"total_committers":4,"mean_commits":4.25,"dds":0.2941176470588235,"last_synced_commit":"0e1c2be3fcb369fd2458bc83bef2aed788414ed9"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/doocs/docker-md","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fdocker-md","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fdocker-md/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fdocker-md/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fdocker-md/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doocs","download_url":"https://codeload.github.com/doocs/docker-md/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doocs%2Fdocker-md/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266486200,"owners_count":23936903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-30T21:01:28.112Z","updated_at":"2025-07-22T11:39:04.168Z","avatar_url":"https://github.com/doocs.png","language":"TypeScript","funding_links":["https://opencollective.com/doocs"],"categories":["TypeScript"],"sub_categories":[],"readme":"# Docker MD\n\n[![docker](https://img.shields.io/badge/docker-latest-42cc23?style=flat-square\u0026labelColor=564341)](https://hub.docker.com/r/doocs/md)\n\n轻量的微信编辑器 [doocs/md](https://github.com/doocs/md) 的轻量容器镜像。\n\n# 目录结构\n\n```bash\n├── docker    镜像文件目录（包含最新分支和 1.6.0 之后的版本）\n│   ├── 1.6.0\n│   ├── 2.0.0\n│   ├── 2.0.1\n│   ├── 2.0.2\n│   ├── 2.0.3\n│   ├── 2.0.4\n│   └── latest\n└── scripts                      构建镜像使用的脚本\n    ├── build-base-image.sh      构建基础镜像\n    ├── build-nginx.sh           构建基于 Nginx 的镜像\n    ├── build-standalone.sh      构建独立二进制版本\n    └── build-multiarch.sh       构建多架构镜像(linux/amd64,linux/arm64)\n```\n\n## 镜像列表\n\n### 二进制版\n\n镜像命名规则 `doocs/md:[版本号]`\n\n```bash\ndocker run --rm -it -p 8080:80 doocs/md:latest\ndocker run --rm -it -p 8080:80 doocs/md:2.0.4\ndocker run --rm -it -p 8080:80 doocs/md:2.0.3\ndocker run --rm -it -p 8080:80 doocs/md:2.0.2\ndocker run --rm -it -p 8080:80 doocs/md:2.0.1\ndocker run --rm -it -p 8080:80 doocs/md:2.0.0\ndocker run --rm -it -p 8080:80 doocs/md:1.6.0\n```\n\n### Nginx 镜像版\n\n镜像命名规则 `doocs/md:[版本号]-nginx`\n\n```bash\ndocker run --rm -it -p 8080:80 doocs/md:latest-nginx\ndocker run --rm -it -p 8080:80 doocs/md:2.0.3-nginx\ndocker run --rm -it -p 8080:80 doocs/md:2.0.2-nginx\ndocker run --rm -it -p 8080:80 doocs/md:2.0.1-nginx\ndocker run --rm -it -p 8080:80 doocs/md:2.0.0-nginx\ndocker run --rm -it -p 8080:80 doocs/md:1.6.0-nginx\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoocs%2Fdocker-md","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoocs%2Fdocker-md","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoocs%2Fdocker-md/lists"}