Skip to content

Commit

Permalink
dont sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Jan 25, 2025
1 parent 1468c88 commit 6d56ca4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests_keycloak_auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
run: |
docker compose -f keycloak/docker-compose-restore.yml up -d postgres
docker compose -f keycloak/docker-compose-restore.yml up -d keycloak
until curl -s http://localhost:8080/realms/master; do sleep 1; done
- name: Verify Keycloak Import
run: |
Expand Down
10 changes: 5 additions & 5 deletions keycloak/docker-compose-restore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ services:
KC_HTTP_ENABLED: true
KC_HOSTNAME_STRICT_HTTPS: false
KC_HEALTH_ENABLED: true
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN}
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
KC_DB: postgres
KC_DB_URL: jdbc:postgresql://postgres/${POSTGRES_DB}
KC_DB_USERNAME: ${POSTGRES_USER}
KC_DB_PASSWORD: ${POSTGRES_PASSWORD}
KC_DB_URL: jdbc:postgresql://postgres/cashu
KC_DB_USERNAME: cashu
KC_DB_PASSWORD: cashu
ports:
- 8080:8080
restart: always
Expand Down

0 comments on commit 6d56ca4

Please sign in to comment.