core/deployments/renew_tests/docker-compose.yaml

29 lines
723 B
YAML
Raw Normal View History

version: '3.8'
2024-02-19 17:48:04 +00:00
services:
app:
build:
2025-07-31 12:49:42 +00:00
context: .
2025-07-31 10:14:31 +00:00
dockerfile: TestsDockerfile
container_name: squiz-core-test-app
2024-02-19 17:48:04 +00:00
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
2024-02-19 17:48:04 +00:00
ports:
- "1488:1488"
- "9000:9000"
restart: unless-stopped
2024-02-19 17:48:04 +00:00
networks:
- app-network
2024-02-19 17:48:04 +00:00
networks:
app-network:
driver: bridge