10 lines
569 B
Docker
10 lines
569 B
Docker
FROM mysql:8.0
|
|
|
|
# Bake all three sub-project schemas + seed data into one database.
|
|
# No table-name collisions across them, and config.php reads the DB name
|
|
# from the DB_NAME env var, so a single shared database is fine.
|
|
# Files in initdb.d run alphabetically against $MYSQL_DATABASE on first boot.
|
|
COPY spbu/webgis.sql /docker-entrypoint-initdb.d/01_spbu.sql
|
|
COPY parsiljalan/webgis2.sql /docker-entrypoint-initdb.d/02_jalantanah.sql
|
|
COPY povertymap/gis_penduduk_miskin.sql /docker-entrypoint-initdb.d/03_miskin.sql
|