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

19 lines
318 B
YAML
Raw Normal View History

2023-11-01 07:56:05 +00:00
version: "3"
services:
app:
container_name: app
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