NewsBlur/docker/postgres/Dockerfile

10 lines
197 B
Text
Raw Normal View History

2024-01-27 23:11:36 -05:00
FROM postgres:13
RUN apt update && apt install -y openssh-client rsync
2024-01-27 23:17:06 -05:00
RUN usermod -u 1000 postgres
RUN groupmod -g 1001 postgres
2024-01-27 23:21:08 -05:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]