Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtmiclat/tippecanoe-docker
πΊοΈ Docker image for tippecanoe
https://github.com/jtmiclat/tippecanoe-docker
docker docker-image tippecanoe
Last synced: 14 days ago
JSON representation
πΊοΈ Docker image for tippecanoe
- Host: GitHub
- URL: https://github.com/jtmiclat/tippecanoe-docker
- Owner: jtmiclat
- Created: 2022-12-31T13:25:37.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-02T07:28:31.000Z (about 1 year ago)
- Last Synced: 2024-12-06T06:12:09.667Z (2 months ago)
- Topics: docker, docker-image, tippecanoe
- Language: Dockerfile
- Homepage: https://ghcr.io/jtmiclat/tippecanoe-docker
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker image for tippecanoe
This is a multistage docker build of [felt's fork of tippecanoe](https://github.com/felt/tippecanoe). The fork is considered the actively maintained version of tippecanoe.
Currently, there is no easy way to access the functionality of tippecanoe without compiling it yourself as there is no pre built binaries released or actively maintained docker image. This repo hopes to provide a simple solution way of using github's docker registry.
## Usage
```
docker pull ghcr.io/jtmiclat/tippecanoe-docker:latest
docker run -it --rm -v $(pwd):/app ghcr.io/jtmiclat/tippecanoe-docker:latest tippecanoe -o output.mbtiles source.geojson
```## Building the image
### Default
```
docker build -t ghcr.io/jtmiclat/tippecanoe-docker:latest .
```
### Specific version
Feel free to update dockefile or pass `TIPPACANOE_VERSION` arg to use a specific version of tippecanoe.```
docker build -t ghcr.io/jtmiclat/tippecanoe-docker:latest . --build-arg TIPPACANOE_VERSION=2.22.0
```