mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
9 lines
197 B
Docker
9 lines
197 B
Docker
FROM postgres:13
|
|
|
|
RUN apt update && apt install -y openssh-client rsync
|
|
|
|
RUN usermod -u 1000 postgres
|
|
RUN groupmod -g 1001 postgres
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|