Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirpo/pdf2htmlex-docker
pdf2htmlEX docker image for MacBooks wirh M1, M2, M3
https://github.com/mirpo/pdf2htmlex-docker
docker m1-mac m2-mac m3-mac pdf2html pdf2htmlex
Last synced: 11 days ago
JSON representation
pdf2htmlEX docker image for MacBooks wirh M1, M2, M3
- Host: GitHub
- URL: https://github.com/mirpo/pdf2htmlex-docker
- Owner: mirpo
- Created: 2023-12-31T12:31:30.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2023-12-31T14:23:36.000Z (10 months ago)
- Last Synced: 2024-01-01T14:26:24.565Z (10 months ago)
- Topics: docker, m1-mac, m2-mac, m3-mac, pdf2html, pdf2htmlex
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### pdf2htmlEX docker image for MacBooks wirh M1, M2, M3
I was trying to find working Docker image for my MacBook Air 13 with M2
and ended up with creating own image.## Requirements
- Docker[https://docs.docker.com/get-docker/]## Build locally
```sh
docker buildx build --platform=linux/amd64 -t my-pdf2htmlex .
```where:
- `my-pdf2htmlex` is your tag## Run locally
```sh
docker run --platform linux/amd64 -ti --rm -v ~/Downloads:/pdf -w /pdf my-pdf2htmlex pdf2htmlEX 1.pdf 1.html
```where:
- `~/Downloads` - folder where PDF file is located
- `my-pdf2htmlex` is your tag
- `1.pdf` - input PDF
- `1.html` - output HTML file