Initial Setup Assistance #77
-
Hi All, I am kind of new to linux (ubuntu 22.04) (apologies in advance!) and grafana and probobally in the deep end and am looking for a little help to get this up and running cause it looks amazing and love metrics! I have managed to get docker installed and it doesnt seem to be throwing any errors after following https://docs.docker.com/engine/install/ and configuring non sudo to access it. luke@tbcgfa01: /Powerwall-Dashboard$ ./setup.sh Compose its is def installed I have set the permission correct I think on tyhe compose file to allow non sudo to execute (I had to use the find command to find this file after the auto install placed it here) Any pointers would be great! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Thanks for posting this @lukedbarton - you might have identified an issue with the setup script! It expects # what setup uses
docker-compose version
# what you may have
docker compose version I suspect you have v2 (the second one) but the setup script uses the v1 format. Here is the way to install docker-compose: # install
sudo pip3 install docker-compose
# test
docker-compose --version |
Beta Was this translation helpful? Give feedback.
Thanks for posting this @lukedbarton - you might have identified an issue with the setup script! It expects
docker-compose
to be available - can you run this and paste results?I suspect you have v2 (the second one) but the setup script uses the v1 format. Here is the way to install docker-compose: