From ef482134c27cd4bcf9d85bed223cae6ac2b5dd6f Mon Sep 17 00:00:00 2001 From: Lukas Martinelli Date: Tue, 1 Nov 2016 13:14:43 +0100 Subject: [PATCH] Update README.md --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 04b7556..37a7d2b 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,21 @@ # Generate Vector Tiles from TM2Source - -*This is a work in progress towards OSM2VectorTiles v3.0* +[![Docker Automated build](https://img.shields.io/docker/automated/openmaptiles/generate-vectortiles.svg?maxAge=2592000)]() [![](https://images.microbadger.com/badges/image/openmaptiles/generate-vectortiles.svg)](https://microbadger.com/images/openmaptiles/generate-vectortiles) A Docker image to export MBTiles (containing gzipped MVT PBF) from a TM2Source project. The TM2Source project usually references a database you need to link against this container. ## Usage -You need to provide the database credentials and run `export-mbtiles`. +You need to provide the database credentials and run `generate-vectortiles`. ```bash docker run --rm \ - -v ./osm2vectortiles.tm2source:/tm2source \ - -v ./:/export \ + -v $(pwd)/project.tm2source:/tm2source \ + -v $(pwd):/export \ -e POSTGRES_USER="osm" \ -e POSTGRES_PASSWORD="osm" \ -e POSTGRES_HOST="127.0.0.1" \ -e POSTGRES_DB="osm" \ -e POSTGRES_PORT="5432" \ - osm2vectortiles/generate-vectortiles + openmaptiles/generate-vectortiles ```