Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rleh/docker-kicad-pandoc
Docker image with Kicad, KiBot, Pandoc and LaTeX to be used with continuous integration services for electronics projects
https://github.com/rleh/docker-kicad-pandoc
Last synced: about 1 month ago
JSON representation
Docker image with Kicad, KiBot, Pandoc and LaTeX to be used with continuous integration services for electronics projects
- Host: GitHub
- URL: https://github.com/rleh/docker-kicad-pandoc
- Owner: rleh
- Created: 2021-07-31T16:25:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T23:37:10.000Z (almost 3 years ago)
- Last Synced: 2024-10-12T19:47:35.501Z (2 months ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-kicad-pandoc
Docker image with Kicad, KiBot, Pandoc and LaTeX to be used with continuous integration services for electronics projects.
## Usage
```bash
# Kicad 5
docker run --rm --volume="$PWD:/pwd:z" -it ghcr.io/rleh/kicad5_and_pandoc:latest
# Run Kibot...# Kicad 6
docker run --rm --volume="$PWD:/pwd:z" -it ghcr.io/rleh/kicad6_and_pandoc:latest
# Run Kibot...
```## Manually build docker images
Prerequisites: Setup [docker authentication for ghcr.io](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry)!
```bash
# kicad5_and_pandoc
docker build -t ghcr.io/rleh/kicad5_and_pandoc:latest - < kicad5_and_pandoc.Dockerfile
docker push ghcr.io/rleh/kicad5_and_pandoc:latest# kicad6_and_pandoc
docker build -t ghcr.io/rleh/kicad6_and_pandoc:latest - < kicad6_and_pandoc.Dockerfile
docker push ghcr.io/rleh/kicad6_and_pandoc:latest
```