# import-sql **Repository Path**: mirrors_openmaptiles/import-sql ## Basic Information - **Project Name**: import-sql - **Description**: Import SQL files in a directory into PostgreSQL and setup vector tile helper functions - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Import SQL files into PostgreSQL [![Docker Automated buil](https://img.shields.io/docker/automated/openmaptiles/import-sql.svg)](https://hub.docker.com/r/openmaptiles/import-sql/) This Docker image will import all SQL files in a directory into PostgreSQL. It will also create all helper functions from [postgis-vt-util](https://github.com/mapbox/postgis-vt-util) for creating vector tiles. ## Usage ```bash docker run --rm \ -v $(pwd):/sql \ -e POSTGRES_USER="osm" \ -e POSTGRES_PASSWORD="osm" \ -e POSTGRES_HOST="127.0.0.1" \ -e POSTGRES_DB="osm" \ -e POSTGRES_PORT="5432" \ openmaptiles/import-sql ```