Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
circleci mkdocs plantuml
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/gloriajun/mkdocs-plantuml-circleci-prototype
- Owner: gloriaJun
- Created: 2023-12-14T05:51:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-02T12:03:26.000Z (about 1 year ago)
- Last Synced: 2024-11-07T03:13:54.965Z (3 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)
```