Skip to content

Instantly share code, notes, and snippets.

@eSlider
eSlider / mbtiles2pbf.sh
Created September 24, 2019 13:53
Extract PBF tiles from mbtiles (SQLite)
#!/bin/sh
git clone https://github.com/mapbox/mbutil
cd mbutil
./mb-util --image_format=pbf *.mbtiles tiles
gzip -d -r -S .pbf *
find . -type f -exec mv '{}' '{}'.pbf \;
@eturan
eturan / docker-compose.yml
Created May 13, 2019 15:20
docker-compose for local KONG setup with dashboard
version: '3.7'
networks:
kong_network:
name: kong_network
services:
kong-database: