6 lines
230 B
Docker
6 lines
230 B
Docker
|
|
FROM supabase/postgres:15.8.1.060
|
||
|
|
|
||
|
|
# Embed init scripts into the image so no volume mounts are needed
|
||
|
|
COPY 00-init-schemas.sql /docker-entrypoint-initdb.d/00-init-schemas.sql
|
||
|
|
COPY migrate.sh /docker-entrypoint-initdb.d/migrate.sh
|