File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
docker/data-source-services Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ # v1.2.1 (June 9, 2020)
2
+ * Added PostgreSQL v9.4
3
+
1
4
# v1.2.0 (March 6, 2020)
2
5
* Removed mysql56
3
6
* Deprecated networks that aren't "st-internal"
Original file line number Diff line number Diff line change @@ -34,6 +34,22 @@ services:
34
34
-c log_filename='%Y-%m-%d.log'
35
35
-c log_line_prefix='%t %v '
36
36
-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'"
37
53
mariadb104 :
38
54
image : mariadb:10.4
39
55
container_name : sourcetoad_mariadb104
You can’t perform that action at this time.
0 commit comments