mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
71430082f2
We no longer need these! Next up: 1. renaming anything with "new" in the name (because we don't have an "old" any more) 2. removing the server upgrade/downgrade tests (I am sure this is controversial) 3. deleting a lot of Python code [NDAT-259]: https://hasurahq.atlassian.net/browse/NDAT-259?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8841 GitOrigin-RevId: df026d4a19dc0cf5c8730d41eafae5eebb6f6f50
38 lines
810 B
YAML
38 lines
810 B
YAML
# These services are brought up in 'run.sh' (see that file)
|
|
|
|
version: "3.6"
|
|
|
|
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
|
|
|
|
sqlserver-healthcheck:
|
|
extends:
|
|
file: ../../docker-compose/databases.yaml
|
|
service: sqlserver-healthcheck
|
|
depends_on:
|
|
sqlserver:
|
|
condition: service_started
|