Skip to content

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Sep 4, 2023
1 parent 26c43a7 commit bd2bd67
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ trim_trailing_whitespace = false
[*.sh]
indent_size = 2

[.github/workflows/*.yml]
[.github/workflows/*.{yaml,yml}]
indent_style = space
indent_size = 2

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
target: keycloak
secrets: inherit

build_configurator:
name: 'Build Configurator'
uses: ./.github/workflows/build_base.yaml
with:
image: configurator
context: ./configurator
secrets: inherit

build_php-fpm-base:
name: 'Build php-fpm-base'
uses: ./.github/workflows/build_base.yaml
Expand Down
2 changes: 1 addition & 1 deletion bin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ COMPOSE_PROFILES="${COMPOSE_PROFILES},setup" docker compose run --rm -T --entryp

docker compose restart keycloak
docker compose run --rm dockerize -wait http://keycloak:8080 -timeout 200s
docker compose run --rm configurator
docker compose run --rm configurator configure -vvv

echo "Done."
4 changes: 3 additions & 1 deletion configurator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ RUN composer install --prefer-dist --no-dev --no-progress --classmap-authoritati
&& composer clear-cache \
&& chown -R app: .

CMD ["bin/console", "configure"]
ENTRYPOINT ["bin/console"]

CMD ["configure"]

0 comments on commit bd2bd67

Please sign in to comment.