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 15
15
- { version: "12", folder: "12" }
16
16
- { version: "13", folder: "13" }
17
17
- { 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" }
19
22
20
23
fail-fast : false
21
24
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
3
3
build-12 : _build-12
4
4
build-13 : _build-13
5
5
build-14 : _build-14
6
+ build-15 : _build-15
7
+ build-16 : _build-16
8
+ build-17 : _build-17
6
9
7
10
_build-% : BUILD_VERSION=$*
8
11
_build-% :
Original file line number Diff line number Diff line change 1
1
# Postgres
2
2
3
- Tuned PostgreSQL 10/11/12/13/14 docker image.
3
+ Tuned PostgreSQL 10/11/12/13/14/15/16/17 docker image.
4
4
5
5
- extensions unaccent, intarray
6
6
- configured czech language
@@ -16,11 +16,14 @@ Tuned PostgreSQL 10/11/12/13/14 docker image.
16
16
17
17
## Versions
18
18
19
- - PostgreSQL 10/11/12/13/14
19
+ - PostgreSQL 10/11/12/13/14/15/16/17
20
20
21
21
## Usage
22
22
23
23
``` 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
24
27
docker run --rm -it -p 5432:5432 dockette/postgres:14
25
28
docker run --rm -it -p 5432:5432 dockette/postgres:13
26
29
docker run --rm -it -p 5432:5432 dockette/postgres:12
You can’t perform that action at this time.
0 commit comments