https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
circleci mkdocs plantuml
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
- Owner: gloriaJun
- Created: 2023-12-14T05:51:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-02T12:03:26.000Z (almost 2 years ago)
- Last Synced: 2024-12-27T02:11:32.017Z (12 months ago)
- Topics: circleci, mkdocs, plantuml
- Language: Shell
- Homepage: https://gloriajun.github.io/mkdocs-plantuml-circleci-prototype/
- Size: 587 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mkdocks build prototype
- plantuml
- mermaid
## Requirements
- Python v3.10
- pip 23.3.1
## Run or Build
```bash
sh ./start.sh
```
## Docker Tips
- build and run
```bash
cd
# to rebuild
docker compose -f docker-compose.yml create
docker compose -f docker-compose.yml run --rm mkdocs-builder
```
- remove all images, container, volumes
```bash
docker system prune
# including stopped, unused images
docker system prune -a
```
- remove dangling images
```bash
docker images -f dangling=true
docker image prune
```
- remove all images
```bash
docker rmi $ (docker images -a -q)
```