mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
b2ac4d82bc
Recent versions of Docker Compose no longer support this, instead just printing a warning. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10937 GitOrigin-RevId: 97a82968c48f5c09d6cbe74d8ea7386979e46e7a
33 lines
655 B
YAML
33 lines
655 B
YAML
# These services are brought up in 'run.sh' (see that file)
|
|
|
|
name: hge-python-tests
|
|
|
|
services:
|
|
postgres:
|
|
extends:
|
|
file: ../../docker-compose/databases.yaml
|
|
service: postgres
|
|
environment:
|
|
POSTGRES_PASSWORD: "hasura"
|
|
volumes:
|
|
- ./docker/postgres-init.sh:/docker-entrypoint-initdb.d/init.sh:ro
|
|
deploy:
|
|
replicas: 2
|
|
|
|
citus:
|
|
extends:
|
|
file: ../../docker-compose/databases.yaml
|
|
service: citus
|
|
environment:
|
|
POSTGRES_PASSWORD: "hasura"
|
|
|
|
sqlserver:
|
|
extends:
|
|
file: ../../docker-compose/databases.yaml
|
|
service: sqlserver
|
|
|
|
redis:
|
|
image: redis:5
|
|
ports:
|
|
- 6379
|