mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
8 lines
208 B
Docker
8 lines
208 B
Docker
FROM postgres:13
|
|
|
|
RUN apt update && apt install -y openssh-client rsync
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"]
|