20251124炳辰版本

This commit is contained in:
wxlong
2025-11-25 17:51:39 +08:00
commit 537fba0e06
269 changed files with 34909 additions and 0 deletions

10
postgres/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM postgres:12
# install PostGIS extension
RUN apt-get update && apt install -y postgis postgresql-12-postgis-3
RUN mkdir -p /docker-entrypoint-initdb.d
# create app database and restore data
COPY ./schema.sql /docker-entrypoint-initdb.d/schema.sql
COPY ./tables.sql /docker-entrypoint-initdb.d/tables.sql