9 lines
179 B
Docker
9 lines
179 B
Docker
FROM postgres:15-alpine
|
|
|
|
COPY start-postgres.sh /usr/local/bin/start-postgres.sh
|
|
|
|
RUN chmod +x /usr/local/bin/start-postgres.sh
|
|
|
|
ENTRYPOINT ["start-postgres.sh"]
|
|
CMD ["postgres"]
|