customer/deployments/test/docker-compose.integration.yaml

19 lines
343 B
YAML
Raw Normal View History

2023-11-01 07:56:05 +00:00
version: "3"
services:
2023-11-01 10:29:26 +00:00
integration:
container_name: customer-integration
2023-11-01 07:56:05 +00:00
image: golang:1
volumes:
- ../..:/app:ro,z
working_dir: /app
command: go test ./tests/integration/...
environment:
- CUSTOMER_SERVICE=customer-service:8000
networks:
- test_test
networks:
test_test:
external: true