We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7385f2b commit f647d69Copy full SHA for f647d69
.github/workflows/integration-tests.yml
@@ -34,6 +34,12 @@ jobs:
34
application-port: 3020
35
- docker-service-name: 'chi'
36
application-port: 3030
37
+ env:
38
+ # Prevent interference between builds by setting the project name to a unique value. Otherwise
39
+ # "docker compose down" has been stopping containers (especially database) from other builds.
40
+ # https://docs.docker.com/compose/project-name/
41
+ # https://docs.docker.com/compose/environment-variables/envvars/#compose_project_name
42
+ COMPOSE_PROJECT_NAME: ${{ matrix.docker-service-name }}
43
steps:
44
45
- name: Clone source code
0 commit comments