mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-22 17:06:29 +00:00
The docker-compose dev setup is broken under Apple silicon, starting the stack fails with the following error. Switching to a different docker image fixes the issue.
95 lines
2.9 KiB
YAML
95 lines
2.9 KiB
YAML
version: "3"
|
|
|
|
x-common-definition-pg:
|
|
&common-definition-pg
|
|
image: postgres:14
|
|
network_mode: "service:main"
|
|
healthcheck:
|
|
test: [ "CMD-SHELL", "pg_isready -U postgres -d postgres" ]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- type: bind
|
|
source: ../tests/sharding/query_routing_setup.sql
|
|
target: /docker-entrypoint-initdb.d/query_routing_setup.sql
|
|
- type: bind
|
|
source: ../tests/sharding/partition_hash_test_setup.sql
|
|
target: /docker-entrypoint-initdb.d/partition_hash_test_setup.sql
|
|
|
|
x-common-env-pg:
|
|
&common-env-pg
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
services:
|
|
main:
|
|
image: gcr.io/google_containers/pause:3.2
|
|
ports:
|
|
- 6432
|
|
|
|
pg1:
|
|
<<: *common-definition-pg
|
|
environment:
|
|
<<: *common-env-pg
|
|
POSTGRES_INITDB_ARGS: --auth-local=md5 --auth-host=md5 --auth=md5
|
|
PGPORT: 5432
|
|
command: ["postgres", "-p", "5432", "-c", "shared_preload_libraries=pg_stat_statements", "-c", "pg_stat_statements.track=all", "-c", "pg_stat_statements.max=100000"]
|
|
|
|
pg2:
|
|
<<: *common-definition-pg
|
|
environment:
|
|
<<: *common-env-pg
|
|
POSTGRES_INITDB_ARGS: --auth-local=scram-sha-256 --auth-host=scram-sha-256 --auth=scram-sha-256
|
|
PGPORT: 7432
|
|
command: ["postgres", "-p", "7432", "-c", "shared_preload_libraries=pg_stat_statements", "-c", "pg_stat_statements.track=all", "-c", "pg_stat_statements.max=100000"]
|
|
pg3:
|
|
<<: *common-definition-pg
|
|
environment:
|
|
<<: *common-env-pg
|
|
POSTGRES_INITDB_ARGS: --auth-local=scram-sha-256 --auth-host=scram-sha-256 --auth=scram-sha-256
|
|
PGPORT: 8432
|
|
command: ["postgres", "-p", "8432", "-c", "shared_preload_libraries=pg_stat_statements", "-c", "pg_stat_statements.track=all", "-c", "pg_stat_statements.max=100000"]
|
|
pg4:
|
|
<<: *common-definition-pg
|
|
environment:
|
|
<<: *common-env-pg
|
|
POSTGRES_INITDB_ARGS: --auth-local=scram-sha-256 --auth-host=scram-sha-256 --auth=scram-sha-256
|
|
PGPORT: 9432
|
|
command: ["postgres", "-p", "9432", "-c", "shared_preload_libraries=pg_stat_statements", "-c", "pg_stat_statements.track=all", "-c", "pg_stat_statements.max=100000"]
|
|
pg5:
|
|
<<: *common-definition-pg
|
|
environment:
|
|
<<: *common-env-pg
|
|
POSTGRES_INITDB_ARGS: --auth-local=md5 --auth-host=md5 --auth=md5
|
|
PGPORT: 10432
|
|
command: ["postgres", "-p", "10432", "-c", "shared_preload_libraries=pg_stat_statements", "-c", "pg_stat_statements.track=all", "-c", "pg_stat_statements.max=100000"]
|
|
|
|
toxiproxy:
|
|
build: .
|
|
network_mode: "service:main"
|
|
container_name: toxiproxy
|
|
environment:
|
|
LOG_LEVEL: info
|
|
entrypoint: toxiproxy-server
|
|
depends_on:
|
|
- pg1
|
|
- pg2
|
|
- pg3
|
|
- pg4
|
|
- pg5
|
|
|
|
pgcat-shell:
|
|
stdin_open: true
|
|
user: "${HOST_UID}:${HOST_GID}"
|
|
build: .
|
|
network_mode: "service:main"
|
|
depends_on:
|
|
- toxiproxy
|
|
volumes:
|
|
- ../:/app/
|
|
entrypoint:
|
|
- /bin/bash
|
|
- -i
|