Files
satellite-provider/docker-compose.tests.yml
T
Anton Martynenko 7a32ed5110 more tests
2025-11-18 19:14:12 +01:00

30 lines
556 B
YAML

services:
postgres:
extends:
file: docker-compose.yml
service: postgres
api:
extends:
file: docker-compose.yml
service: api
integration-tests:
build:
context: .
dockerfile: SatelliteProvider.IntegrationTests/Dockerfile
container_name: satellite-provider-integration-tests
environment:
- API_URL=http://api:8080
volumes:
- ./ready:/app/ready
- ./tiles:/app/tiles
depends_on:
api:
condition: service_started
restart: "no"
volumes:
postgres_data: