COMPOSE_PROJECT_NAME=dockerosm # Change the following variable if you want to merge multiple compose files # docker-compose will automatically merged docker-compose.yml and docker-compose.override.yml if exists. # COMPOSE_FILE=docker-compose.yml:docker-compose.develop.yml:docker-compose-web.yml COMPOSE_FILE=docker-compose.yml:docker-compose.develop.yml POSTGRES_USER=docker POSTGRES_PASS=docker POSTGRES_DBNAME=gis DB_PORT=35432 PGDB_PORT=6500 POSTGRES_VERSION=13-3.1 MARTIN_PORT=3000 WATCH_MODE=true DATABASE_URL=postgres://docker:docker@db/gis # Uncomment to expose the postgis database on the network ALLOW_IP_RANGE= 0.0.0.0/0 POSTGRES_PORT=5432 POSTGRES_HOST=db # seconds between 2 executions of the script # if 0, then no update will be done, only the first initial import from the PBF TIME=120 # folder for settings (with *.json and *.sql) SETTINGS=settings # folder for caching CACHE=cache # folder for diff which has been imported IMPORT_DONE=import_done # folder for diff which hasn't been imported yet IMPORT_QUEUE=import_queue # it can be 3857 SRID=4326 # see http://imposm.org/docs/imposm3/latest/tutorial.html#optimize OPTIMIZE=false # see http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables DBSCHEMA_PRODUCTION=osm # http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables DBSCHEMA_IMPORT=osm_import # http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables DBSCHEMA_BACKUP=osm_backup # Install some styles if you are using the default mapping. It can be 'yes' or 'no' QGIS_STYLE=yes # Use clip in the database - To use this you should have run make import_clip to add your clip to the DB CLIP=yes # These are all currently the defaults but listed here for your # convenience if you want to change them # the maximum time range to assemble a cumulated changefile. MAX_DAYS=100 # osmupdate uses a combination of minutely, hourly and daily changefiles. This value can be minute, hour, day or sporadic. DIFF=sporadic # argument to determine the maximum number of parallely processed changefiles. MAX_MERGE=7 # define level for gzip compression. values between 1 (low compression but fast) and 9 (high compression but slow) COMPRESSION_LEVEL=1 # change the URL to use a custom URL to fetch regional file updates. BASE_URL=http://planet.openstreetmap.org/replication/ PGADMIN_DEFAULT_EMAIL=docker@gmail.com PGADMIN_DEFAULT_PASSWORD=docker # https://github.com/kartoza/docker-postgis#postgres-ssl-setup FORCE_SSL=false # Force client connection to require ssl mode in connecting SSL_MODE=disable # Activate these in the osmenrich and imposm if the SSL_MODE is set to verify-full or verify-ca #SSL_CERT=/etc/certs/cert.pem #SSL_ROOT_CERT=/etc/certs/root.crt #SSL_KEY=/etc/certs/key.pem