How to install the docker service from ssh?

This is how I installed the french language from ssh.

cd "${HOME}/.kodi/addons"
curl -OL 'http://mirrors.kodi.tv/addons/matrix/resource.language.fr_fr/resource.language.fr_fr-9.0.36.zip'
unzip resource.language.fr_fr-9.0.36.zip
rm resource.language.fr_fr-9.0.36.zip

I would like to do the same with the addon service.system.docker.
But I can’t find the right url to download the zip file.

Here

http://coreelec.relkai.org/addons/9.2/Amlogic/arm/service.system.docker/service.system.docker-9.2.127.zip

Thank you very much.

Could you tell me if this also works with the CoreELEC Matrix branch?

Matrix is using this: https://relkai.coreelec.org/addons/19.0/Amlogic-ce/arm/service.system.docker/service.system.docker-19.0.133.zip

1 Like

Thanks!

How do you find these URLs?
And how do you know if it’s really the latest version?

From the xml list: https://relkai.coreelec.org/addons/19.0/Amlogic-ce/arm/addons.xml.gz

Open this xml and search for docker.

1 Like

Just to help someone, who stumbles across this post. This is what worked for me -

cd "${HOME}/.kodi/addons"
curl -OL https://relkai.coreelec.org/addons/19.0/Amlogic-ce/arm/service.system.docker/service.system.docker-19.0.133.zip
unzip service.system.docker-19.0.133.zip
rm service.system.docker-19.0.133.zip

ln -s /storage/.kodi/addons/service.system.docker/system.d/service.system.docker.service  ~/.config/system.d/service.system.docker.service

systemctl daemon-reload
systemctl start service.system.docker.service
systemctl status service.system.docker.service
1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.