Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)
```