/
githubmirror
/
postgres-compatibility-tests
Обзор
Документация
Войти
/
githubmirror
/
postgres-compatibility-tests
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
languages/python/psycopg2/docker-compose.yaml
36 строк
1 KB
Timofey Koolin
switch to github images
15 янв 2024, 13:36
15 янв 2024, 13:36
3bd5a40
Код
Авторство
О чём код?
version: "3" services: ydb: image: ghcr.io/ydb-platform/local-ydb:nightly environment: - "YDB_DEFAULT_LOG_LEVEL=DEBUG" - "GRPC_TLS_PORT=2135" - "GRPC_PORT=2136" - "MON_PORT=8765" - "YDB_USE_IN_MEMORY_PDISKS=true" - "POSTGRES_USER=${YDB_PG_USER:-root}" - "POSTGRES_PASSWORD=${YDB_PG_PASSWORD:-1234}" - "YDB_FEATURE_FLAGS=enable_temp_tables" - "YDB_TABLE_ENABLE_PREPARED_DDL=true" healthcheck: test: "/bin/sh /health_check" interval: 1s start_period: 10s project: image: ydb-test/psycopg2 depends_on: ydb: condition: service_healthy environment: - PSYCOPG2_TESTDB=${YDB_PG_DATABASE:-local} - PSYCOPG2_TESTDB_HOST=${YDB_PG_HOST:-ydb} - PSYCOPG2_TESTDB_PORT=${YDB_PG_PORT:-5432} - PSYCOPG2_TESTDB_USER=${YDB_PG_USER:-root} - PSYCOPG2_TESTDB_PASSWORD=${YDB_PG_PASSWORD:-1234} - YDB_PG_TESTNAME=${YDB_PG_TESTNAME:-} build: context: . network: host volumes: - ./exchange:/exchange - ./test-result/:/test-result