Skip to content

Commit e52cd11

Browse files
authored
Merge pull request #15 from sourcetoad/SYS-2128
SYS-2128-add-postgres94
2 parents 583bf55 + 3ef8bf6 commit e52cd11

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v1.2.1 (June 9, 2020)
2+
* Added PostgreSQL v9.4
3+
14
# v1.2.0 (March 6, 2020)
25
* Removed mysql56
36
* Deprecated networks that aren't "st-internal"

docker/data-source-services/docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,22 @@ services:
3434
-c log_filename='%Y-%m-%d.log'
3535
-c log_line_prefix='%t %v '
3636
-c log_statement='all'"
37+
postgres94:
38+
image: postgres:9.4
39+
container_name: sourcetoad_postgres94
40+
ports:
41+
- "5494:5432"
42+
environment:
43+
- POSTGRES_USER=postgres_user
44+
- POSTGRES_PASSWORD=postgres_pass
45+
networks:
46+
- st-internal
47+
command: "postgres
48+
-c logging_collector='on'
49+
-c log_directory='/var/log/postgresql'
50+
-c log_filename='%Y-%m-%d.log'
51+
-c log_line_prefix='%t %v '
52+
-c log_statement='all'"
3753
mariadb104:
3854
image: mariadb:10.4
3955
container_name: sourcetoad_mariadb104

0 commit comments

Comments
 (0)