Gisgraphy standalone in a Docker Container
The following docs outline how your PostgreSQL instance should be configured
Note changes required in pg_hba.conf
Please see entrypoint.sh
for SQL executed on first run, as per install doc
docker build -t gisgraphy-image .
# update the PG_* variables with those of your instance
docker run -it -d --name gisgraphy -p 8080:8080 -e "GISGRAPHY_DB=gisgraphy" \
-e "PG_HOST=database" -e "PG_USER=mdppostgres" -e "PG_PASS=pgsecurepass" gisgraphy-image
# docker compose (to run with an instance of PostgreSQL)
docker compose up -d --build
Following