rename compose file back

This commit is contained in:
Maxim Dolgushin 2023-11-01 15:59:11 +07:00 committed by skeris
parent 5f0b22a21a
commit 85af11c1d6
3 changed files with 4 additions and 4 deletions

@ -31,14 +31,14 @@ test.integration: ## run integration tests
@make test.integration.down
test.integration.up: ## build integration test environment
docker-compose -f deployments/test/environment.yaml up -d --remove-orphans
docker-compose -f deployments/test/docker-compose.yaml up -d --remove-orphans
test.integration.down: ## shutting down integration environment
docker-compose -f deployments/test/environment.yaml down --volumes
docker-compose -f deployments/test/docker-compose.yaml down --volumes
test.integration.start: ## run integration test
docker-compose -p integration -f deployments/test/integration.yaml up --exit-code-from app --remove-orphans
docker-compose -p integration -f deployments/test/integration.yaml down
docker-compose -p integration -f deployments/test/docker-compose.app.yaml up --exit-code-from app --remove-orphans
docker-compose -p integration -f deployments/test/docker-compose.app.yaml down
test.e2e.start: ## run integration test
go test ./tests/e2e/...