12 lines
288 B
Docker
12 lines
288 B
Docker
|
FROM postgres:14.1-bullseye
|
||
|
|
||
|
COPY initScript/*.sh /docker-entrypoint-initdb.d/
|
||
|
RUN localedef -i fr_FR -c -f UTF-8 -A /usr/share/locale/locale.alias fr_FR.UTF-8
|
||
|
ENV LANG fr_FR.utf8
|
||
|
|
||
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
||
|
VOLUME /var/lib/postgresql/data/instance
|
||
|
|
||
|
EXPOSE 5432
|
||
|
CMD ["postgres"]
|