mirror of
https://github.com/sartography/cr-connect-db.git
synced 2025-01-22 04:38:48 +00:00
7 lines
221 B
Docker
7 lines
221 B
Docker
FROM postgres
|
|
ARG GIT_COMMIT=unspecified
|
|
LABEL git_commit=$GIT_COMMIT
|
|
COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh
|
|
CMD echo 'echo "git commit = $GIT_COMMIT"' >> /docker-entrypoint-initdb.d/initdb.sh
|
|
EXPOSE 5432
|