mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-01-09 06:51:03 +01:00
7 lines
221 B
Docker
Executable File
7 lines
221 B
Docker
Executable File
FROM exadel/compreface:1.1.0
|
|
ENV PGDATA=/data/database
|
|
RUN apt-get update && apt-get install jq -y && rm -rf /var/lib/apt/lists/*
|
|
COPY postgresql.conf /etc/postgresql/13/main/postgresql.conf
|
|
COPY run.sh /
|
|
CMD ["/run.sh"]
|