2017-05-04 19:24:59 -04:00
|
|
|
# postserve
|
2019-03-21 20:18:49 -04:00
|
|
|
|
|
|
|
This is an OpenMapTiles map vector tile test server. It requires the prepared SQL statement
|
|
|
|
generated by the `generate-sqltovmt` tools script.
|
|
|
|
|
|
|
|
To run, use this command, replacing `myfile.sql` with the name of the generated file in the current dir.
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run -it --rm --net=host -v "$PWD:/data" openmaptiles/postserve /data/myfile.sql
|
|
|
|
```
|
|
|
|
|
|
|
|
To see help, use
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run -it --rm --net=host -v "$PWD:/data" openmaptiles/postserve --help
|
|
|
|
```
|