Update to tools v5. See https://github.com/openmaptiles/openmaptiles-tools/releases/tag/v5.0.0 for the list of all changes. Other OMT-repo specific changes: * removes `import-osm` docker usage, replacing it with `openmaptiles-tools` * quickstart builds faster because it uses postgres with preloaded water, natural earth, and lake centerlines tables. ### Makefile targets * `tools-dev` will open a shell in a docker to experiment and debug (instead of `import-sql-dev` and `import-osm-dev`) * separated `start-maputnik` from `start-postserve` * renamed `clean-docker` into `db-destroy` to make it more explicit * cleaner `db-start`, `db-stop`, `db-destroy` targets * `db-start-preloaded` is the same as `db-start`, except that it uses `postgis-preloaded` -- an image with preloaded water, natural-earth, and lake centerline data * `db-start` will not recreate the container if it already exists -- this way if it was started as preloaded, it will not be rebuilt. * better output messages ### Quickstart * uses `postgis-preloaded` image by default to make quickstart quicker. To start with a clean db, pass 2 parameters to quickstart, e.g. `./quickstart.sh albania empty`
20 lines
437 B
Bash
20 lines
437 B
Bash
# This file defines default environment variables for all images
|
|
|
|
# Use 3-part patch version to ignore patch updates, e.g. 5.0.0
|
|
TOOLS_VERSION=5.0
|
|
|
|
# Make sure these values are in sync with the ones in .env-postgres file
|
|
PGDATABASE=openmaptiles
|
|
PGUSER=openmaptiles
|
|
PGPASSWORD=openmaptiles
|
|
PGHOST=postgres
|
|
PGPORT=5432
|
|
|
|
QUICKSTART_MIN_ZOOM=0
|
|
QUICKSTART_MAX_ZOOM=7
|
|
DIFF_MODE=false
|
|
|
|
BBOX=-180.0,-85.0511,180.0,85.0511
|
|
MIN_ZOOM=0
|
|
MAX_ZOOM=14
|