kopia lustrzana https://github.com/kartoza/docker-postgis
Create gis db by default so we are ready to roll
rodzic
54b0ba0e73
commit
78c4a31e9c
|
@ -82,8 +82,11 @@ else
|
||||||
psql template_postgis -c 'GRANT ALL ON geography_columns TO PUBLIC;'
|
psql template_postgis -c 'GRANT ALL ON geography_columns TO PUBLIC;'
|
||||||
echo "Granting on spatial ref sys"
|
echo "Granting on spatial ref sys"
|
||||||
psql template_postgis -c 'GRANT ALL ON spatial_ref_sys TO PUBLIC;'
|
psql template_postgis -c 'GRANT ALL ON spatial_ref_sys TO PUBLIC;'
|
||||||
# This should show up in docker logs afterwards
|
# Create a default db called 'gis' that you can use to get up and running quickly
|
||||||
|
# It will be owned by the docker db user
|
||||||
|
createdb -O docker -T template_postgis gis
|
||||||
fi
|
fi
|
||||||
|
# This should show up in docker logs afterwards
|
||||||
psql -l
|
psql -l
|
||||||
|
|
||||||
wait $!
|
wait $!
|
||||||
|
|
Ładowanie…
Reference in New Issue