core/deployments/renew_tests/docker-compose.yaml
pasha1coil 56bb9610b4
Some checks failed
Deploy / CreateImage (push) Successful in 2m35s
Deploy / Tests (push) Failing after 35s
-
2025-07-30 18:50:35 +03:00

29 lines
729 B
YAML

version: '3.8'
services:
app:
build:
context: .
dockerfile: ../../TestsDockerfile
container_name: squiz-core-test-app
environment:
- IS_TEST=true
- IS_PROD_LOG=false
- IS_PROD=false
- CLIENT_HTTP_URL=localhost:1488
- GRPC_URL=localhost:9000
- POSTGRES_URL=host=test-postgres port=35432 user=squiz password=Redalert2 dbname=squiz sslmode=disable
- REDIS_HOST=test-redis:6379
- REDIS_PASSWORD=admin
- REDIS_DB=2
- CLICKHOUSE_URL=clickhouse://clickhouse.pena:9000/default?sslmode=disable
ports:
- "1488:1488"
- "9000:9000"
restart: unless-stopped
networks:
- app-network
networks:
app-network:
driver: bridge