Initial commit

This commit is contained in:
cracklesparkle
2024-11-25 01:20:02 +00:00
commit 27a4f4153f
12 changed files with 420 additions and 0 deletions

12
postgres/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM postgres:14 AS base
RUN apt-get update && apt-get install -y locales-all \
&& locale-gen ru_RU.UTF-8 \
&& update-locale LANG=ru_RU.UTF-8
ENV LANG=ru_RU.UTF-8
ENV LC_NUMERIC=ru_RU.UTF-8
COPY ./db /docker-entrypoint-initdb.d
COPY init.sql /docker-entrypoint-initdb.d/