Docker container - fine tuning
Login as root
Login to the VM using Google console
docker ps
will produce the list of containers currently running on the machine.
sudo docker exec -it --workdir /root --user root 6fd64c963bb1 /bin/bash
will allow to enter docker container as root.
Updating
apt upgrade -y
will update/upgrade all packages
Installing
apt-get install mc
will install Midnight Commander
apt-get install wget
will install wget
Install plugins
mkdir /home/downloads
cd /home/downloads
wget https://github.com/VolkovLabs/volkovlabs-echarts-panel/archive/refs/heads/main.zip
grafana-cli --repo https://volkovlabs.io/plugins plugins install volkovlabs-echarts-panel
This will require the entire docker container restart
sudo docker restart 6fd64c963bb1