mirror of
https://github.com/esauflores/databases.git
synced 2026-03-09 22:43:59 +00:00
7 lines
188 B
Docker
7 lines
188 B
Docker
FROM postgres:18-alpine
|
|
|
|
COPY 000_extensions.sql /docker-entrypoint-initdb.d/
|
|
|
|
HEALTHCHECK --interval=10s --timeout=5s --retries=5 \
|
|
CMD pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}
|