Skip to content

Commit

Permalink
FIX - missing "sudo" for "docker ps" in generate_dashboard_urls.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Feb 7, 2024
1 parent 9be6e69 commit 7662251
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
######################################################################
## PROJECT_VERSION
PROJECT_VERSION=3.3.5
PROJECT_VERSION=3.3.6
## PROJECT NAME
COMPOSE_PROJECT_NAME=money4band
DS_PROJECT_SERVER_URL=https://discord.com/invite/Fq8eeazBAD
Expand Down
2 changes: 1 addition & 1 deletion generate_dashboard_urls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ generate_dashboard_urls() {
if [[ -n "$port_mapping" ]]; then
echo "If enabled you can visit the $container_info web dashboard on http://localhost:$port_mapping" >> "$dashboard_file"
fi
done < <(docker ps --format "{{.Ports}} {{.Names}}")
done < <(sudo docker ps --format "{{.Ports}} {{.Names}}")

echo "Dashboard URLs have been written to $dashboard_file"
}
Expand Down

0 comments on commit 7662251

Please sign in to comment.