Skip to content

Commit

Permalink
update: #727 d
Browse files Browse the repository at this point in the history
  • Loading branch information
gschmutz committed Jan 27, 2025
1 parent 36c6091 commit 3f224b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -24849,8 +24849,8 @@ services:
{% endif -%} {# logging_driver is defined ... #}
command: >
sh -c 'printf "tunnels:\n" > /tmp/ngrok.yml &&
IFS="," read -ra PORT <<< "$NGROK_PORTS";
for port in "${PORT[@]}"; do
IFS="," read -ra PORT <<< "$$NGROK_PORTS";
for port in "$${PORT[@]}"; do
printf " app${port}:\n proto: http\n addr: host.docker.internal:%s\n" $port >> /tmp/ngrok.yml;
done &&
cat /tmp/ngrok.yml &&

0 comments on commit 3f224b2

Please sign in to comment.