https://github.com/hellojukay/sphinx-docker
包含 sphinx 工具链的 docker 容器
https://github.com/hellojukay/sphinx-docker
Last synced: 4 months ago
JSON representation
包含 sphinx 工具链的 docker 容器
- Host: GitHub
- URL: https://github.com/hellojukay/sphinx-docker
- Owner: hellojukay
- License: bsd-3-clause
- Created: 2020-10-12T09:43:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-24T13:50:59.000Z (over 5 years ago)
- Last Synced: 2025-06-04T05:09:47.765Z (about 1 year ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sphinx-docker
包含 sphinx 工具链的 docker 容器

# pull
```bash
docker pull hellojukay/sphinx-docker:3.2.1
```
# 相关信息
| 软件 | 版本 |
| --- | --- |
| OS | debian buster |
| Python | 3.10.0a1 |
| sphinx | 3.2.1 |
# gitlab-ci
```yml
pages:
image: hellojukay/sphinx-docker:3.2.1
script:
- make html
- mv build/html public
artifacts:
paths:
- public
tags:
- k8s
```
# docker run
```bash
docker run --rm -it -v $PWD:/workspace hellojukay/sphinx-docker:3.2.1 bash
cd /workspace
make html
```