Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Changelog", this file is a reverse-chronological list of merged pull requests.

## Open PR's

- [PR-152](https://github.com/itk-dev/devops_itkdev-docker/pull/152) - 2026-09-15 -
Fixed `idc url` returning a malformed URL when a project has more than
one Traefik router, which left `idc open` on a blank tab
- [PR-145](https://github.com/itk-dev/devops_itkdev-docker/pull/145) - 2026-07-08 -
Updated GitHub Actions to latest versions (`actions/checkout` to `v7`,
`go-task/setup-task` to `v2`) in workflow templates and repository CI
Expand Down
2 changes: 1 addition & 1 deletion scripts/itkdev-docker-compose
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ case "$cmd" in
# Get traefik host from label
# https://stedolan.github.io/jq/manual/#test(val),test(regex;flags)
# https://stedolan.github.io/jq/manual/#capture(val),capture(regex;flags)
traefik_host=$(docker inspect --format '{{ json .Config.Labels }}' $(docker_compose ps -q $service) | jq --raw-output '. | [to_entries[] | select(.key | test("^traefik\\.http\\.routers\\..+\\.rule$")) | select(.value | test("^Host\\(`(?<host>.+)`\\)$"))] | first | .value//"" | capture("^Host\\(`(?<host>.+)`\\)$") | .host//""')
traefik_host=$(docker inspect --format '{{ json .Config.Labels }}' $(docker_compose ps -q $service) | jq --raw-output '. | [to_entries[] | select(.key | test("^traefik\\.http\\.routers\\..+\\.rule$")) | select(.value | test("^Host\\(`[^`]+`\\)$"))] | first | .value//"" | capture("^Host\\(`(?<host>[^`]+)`\\)$") | .host//""')
fi

if ! [ -z "$traefik_host" ]; then
Expand Down