Skip to content

Commit 64810d0

Browse files
committed
feat: add postgres 9.4 to match lowest usage of cruise director
1 parent 583bf55 commit 64810d0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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)