File tree Expand file tree Collapse file tree 6 files changed +48
-3
lines changed
Expand file tree Collapse file tree 6 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 1515 - { version: "12", folder: "12" }
1616 - { version: "13", folder: "13" }
1717 - { version: "14", folder: "14" }
18- - { version: "latest", folder: "14" }
18+ - { version: "15", folder: "15" }
19+ - { version: "16", folder: "16" }
20+ - { version: "17", folder: "17" }
21+ - { version: "latest", folder: "17" }
1922
2023 fail-fast : false
2124
Original file line number Diff line number Diff line change 1+ FROM postgres:15
2+
3+ ENV LC_ALL=cs_CZ.UTF-8
4+ ENV LANG=cs_CZ.UTF-8
5+ ENV LANGUAGE=cs_CZ.UTF-8
6+ ENV TZ=Europe/Prague
7+ ENV POSTGRES_VERSION=15
8+
9+ COPY ./shared/misc/czech /usr/share/postgresql/${POSTGRES_VERSION}/tsearch_data
10+ COPY ./shared/init-scripts/* /docker-entrypoint-initdb.d/
11+
12+ RUN localedef -i cs_CZ -c -f UTF-8 -A /usr/share/locale/locale.alias cs_CZ.UTF-8
Original file line number Diff line number Diff line change 1+ FROM postgres:16
2+
3+ ENV LC_ALL=cs_CZ.UTF-8
4+ ENV LANG=cs_CZ.UTF-8
5+ ENV LANGUAGE=cs_CZ.UTF-8
6+ ENV TZ=Europe/Prague
7+ ENV POSTGRES_VERSION=16
8+
9+ COPY ./shared/misc/czech /usr/share/postgresql/${POSTGRES_VERSION}/tsearch_data
10+ COPY ./shared/init-scripts/* /docker-entrypoint-initdb.d/
11+
12+ RUN localedef -i cs_CZ -c -f UTF-8 -A /usr/share/locale/locale.alias cs_CZ.UTF-8
Original file line number Diff line number Diff line change 1+ FROM postgres:17
2+
3+ ENV LC_ALL=cs_CZ.UTF-8
4+ ENV LANG=cs_CZ.UTF-8
5+ ENV LANGUAGE=cs_CZ.UTF-8
6+ ENV TZ=Europe/Prague
7+ ENV POSTGRES_VERSION=17
8+
9+ COPY ./shared/misc/czech /usr/share/postgresql/${POSTGRES_VERSION}/tsearch_data
10+ COPY ./shared/init-scripts/* /docker-entrypoint-initdb.d/
11+
12+ RUN localedef -i cs_CZ -c -f UTF-8 -A /usr/share/locale/locale.alias cs_CZ.UTF-8
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ build-11: _build-11
33build-12 : _build-12
44build-13 : _build-13
55build-14 : _build-14
6+ build-15 : _build-15
7+ build-16 : _build-16
8+ build-17 : _build-17
69
710_build-% : BUILD_VERSION=$*
811_build-% :
Original file line number Diff line number Diff line change 11# Postgres
22
3- Tuned PostgreSQL 10/11/12/13/14 docker image.
3+ Tuned PostgreSQL 10/11/12/13/14/15/16/17 docker image.
44
55- extensions unaccent, intarray
66- configured czech language
@@ -16,11 +16,14 @@ Tuned PostgreSQL 10/11/12/13/14 docker image.
1616
1717## Versions
1818
19- - PostgreSQL 10/11/12/13/14
19+ - PostgreSQL 10/11/12/13/14/15/16/17
2020
2121## Usage
2222
2323``` sh
24+ docker run --rm -it -p 5432:5432 dockette/postgres:17
25+ docker run --rm -it -p 5432:5432 dockette/postgres:16
26+ docker run --rm -it -p 5432:5432 dockette/postgres:15
2427docker run --rm -it -p 5432:5432 dockette/postgres:14
2528docker run --rm -it -p 5432:5432 dockette/postgres:13
2629docker run --rm -it -p 5432:5432 dockette/postgres:12
You can’t perform that action at this time.
0 commit comments