File tree Expand file tree Collapse file tree 5 files changed +17
-1
lines changed Expand file tree Collapse file tree 5 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ .DS_Store
2
+ .python-version
3
+ venv /
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Unmodified Postgres with some useful plugins. Our goal with this repo is not to
18
18
- ✅ [ PL/Java] ( https://github.com/tada/pljava ) . Write in Java functions in Postgres.
19
19
- ✅ [ pg_cron] ( https://github.com/citusdata/pg_cron ) . Run CRON jobs inside Postgres.
20
20
- ✅ [ pg-safeupdate] ( https://github.com/eradman/pg-safeupdate ) . Protect your data from accidental updates or deletes.
21
+ - ✅ [ wal2json] ( https://github.com/eulerto/wal2json ) . JSON output plugin for logical replication decoding
21
22
22
23
## Install
23
24
Original file line number Diff line number Diff line change
1
+ # wal2json
2
+ - name : Install wal2json
3
+ apt :
4
+ pkg :
5
+ - " postgresql-{{ postgresql_version }}-wal2json"
6
+ update_cache : yes
7
+ cache_valid_time : 3600
8
+
1
9
# postgis
2
10
- name : Install postgis for postgreSQL versions < 10
3
11
apt :
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ FROM postgres:12
4
4
RUN apt-get update \
5
5
&& apt-get install postgresql-12-cron -y
6
6
7
+ # install wal2json
8
+ RUN apt-get update \
9
+ && apt-get install postgresql-$PG_MAJOR-wal2json -y
10
+
7
11
# install postgis
8
12
ENV POSTGIS_MAJOR 3
9
13
ENV POSTGIS_VERSION 3.0.0+dfsg-2~exp1.pgdg100+1
@@ -198,4 +202,4 @@ ENV LANGUAGE=en_US.UTF-8
198
202
ENV LANG=en_US.UTF-8
199
203
ENV LC_ALL=en_US.UTF-8
200
204
RUN mkdir -p /docker-entrypoint-initdb.d
201
- ADD ./mnt /docker-entrypoint-initdb.d/
205
+ ADD ./mnt /docker-entrypoint-initdb.d/
You can’t perform that action at this time.
0 commit comments