2025-04-01 10:38:02 +09:00

6 lines
191 B
Docker

ARG postgres_version=11.20-alpine3.18
FROM postgres:${postgres_version}
ADD setup.sql /docker-entrypoint-initdb.d
RUN chown -R postgres:postgres /docker-entrypoint-initdb.d/
CMD ["postgres"]