Files
supabase/docker/dockerfiles/postgres/Dockerfile
2021-08-31 09:53:52 +07:00

20 lines
640 B
Docker

FROM supabase/postgres:13.3.0
COPY --chown=postgres 00-initial-schema.sql /docker-entrypoint-initdb.d/00-initial-schema.sql
COPY --chown=postgres auth-schema.sql /docker-entrypoint-initdb.d/auth-schema.sql
COPY --chown=postgres storage-schema.sql /docker-entrypoint-initdb.d/storage-schema.sql
# Build time defaults
ARG build_POSTGRES_DB=postgres
ARG build_POSTGRES_USER=postgres
ARG build_POSTGRES_PASSWORD=postgres
ARG build_POSTGRES_PORT=5432
# Run time values
ENV POSTGRES_DB=$build_POSTGRES_DB
ENV POSTGRES_USER=$build_POSTGRES_USER
ENV POSTGRES_PASSWORD=$build_POSTGRES_PASSWORD
ENV POSTGRES_PORT=$build_POSTGRES_PORT
EXPOSE 5432