core/deployments/renew_tests/docker-compose.yaml
pasha1coil 1863891bbf
Some checks failed
Deploy / DeployService (push) Failing after 41s
Deploy / CreateImage (push) Failing after 42s
added test docker file compouse and gitea workflow
2025-07-30 15:16:36 +03:00

29 lines
723 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