Skip to content

Commit 5ec6429

Browse files
committed
try again
1 parent 2fbb09c commit 5ec6429

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

.github/workflows/build_and_test_new_on_tenant_users_branch.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ on:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15+
services:
16+
docker:
17+
image: docker:27.2.0
18+
options: --privileged
19+
ports:
20+
- 8082:8080
21+
- 5435:5432
22+
- 15672:15672
23+
- 5672:5672
24+
- 6379:6379
25+
- 6380:6379
26+
- 8001:8001
27+
- 8004:8001
28+
1529
defaults:
1630
run:
1731
working-directory: ./
@@ -20,9 +34,12 @@ jobs:
2034
uses: actions/checkout@v4
2135

2236
- name: Run docker compose
23-
run: docker compose -f docker-compose.yml -f docker-integration-tests.yml up -d
37+
run: docker compose -f docker-compose.yml -f docker-integration-tests.yml up --build -d
2438
working-directory: ./
2539

40+
- name: Print Docker Compose logs
41+
run: docker-compose logs
42+
2643
# - name: Set up Docker Compose
2744
# uses: hoverkraft-tech/compose-action@v2.0.2
2845
# with:

docker-compose.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
- keycloak-old
3838

3939
ports:
40-
- "8080:8080/tcp"
40+
- "8087:8087/tcp"
4141

4242
user: "1000"
4343

@@ -90,9 +90,6 @@ services:
9090

9191
user: "1000"
9292

93-
extra_hosts:
94-
- "host.docker.internal:host-gateway"
95-
9693
rabbitmq:
9794
command:
9895
- "rabbitmq-server"

0 commit comments

Comments
 (0)