/
githubmirror
/
postgres-compatibility-tests
Обзор
Документация
Войти
/
githubmirror
/
postgres-compatibility-tests
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
apps/urlsh/docker-compose.yaml
34 строки
1020 B
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: 1m project: depends_on: ydb: condition: service_healthy image: ydb-test/app-urlsh build: context: ../../ dockerfile: apps/urlsh/Dockerfile network: host environment: - DATABASE_URL=postgres://${YDB_PG_USER:-root}:${YDB_PG_PASSWORD:-1234}@${YDB_PG_HOST:-ydb}:${YDB_PG_PORT:-5432}${YDB_PG_DATABASE:-/local} - YDB_PG_TESTNAME=${YDB_PG_TESTNAME:-} volumes: - ./exchange:/exchange - ./test-result/:/test-result