Docker images for Yunohost 4+

Hello,

For the followers of docker, here are 3 Yunohost 4.x images for AMD64, I386 ARM from domainelibre:

https://hub.docker.com/r/domainelibre/yunohost/
https://hub.docker.com/r/domainelibre/yunohost-i386/
https://hub.docker.com/r/domainelibre/yunohost-arm/

Have a good day !

Edit 25/10/2020

Yunohost 4.0.8 images are available ! :slight_smile:

Warning, all links are changed ! Like domainelibre/yunohost3 became domainelibre/yunohost

5 Likes

Amazing.
Thanks for your work.

Thanks a lot!
For hardware-related reasons I had abandoned YNH for the past months. I moved from a VPS to a self-hosted hardware, but my server also happen to be a media center with Kodi. I couldn’t make Kodi work as well in YNH as it does in dedicated OSes like LibreElec. So I had to abandon YNH and run my wwbservices under Docker. It was not satisfying though, and hard to maintain.

Now I can finally get YNH back, in a Docker container within LibreElec! Thanks a lot

1 Like

Yunohost 3.4.2.2 images are available !

2 Likes

Yunohost 3.5.2.2 images are available !

2 Likes

Yunohost 3.6.4.6 images are available !

3 Likes

Congratulations, this is very cool :rocket:

Hi,
I’m using it as standalone Docker image with following starter preferences:

docker run -d -h yunohost.hs --name=yunohost
–privileged
–restart always
-p 22:22
-p 80:80
-p 443:443
-p 5222:5222
-p 5269:5269
-v /media/mydisk/backup:/home/yunohost.backup
-v /media:/media
-v /sys/fs/cgroup:/sys/fs/cgroup:ro
-v /var/run/docker.sock:/var/run/docker.sock
domainelibre/yunohost3 /bin/systemd

I want to use it as a swarm service. I’d try following script:

docker service create
–name yunohost
–publish published=80,target=80
–publish published=22,target=22
–publish published=443,target=443
–publish published=5222,target=5222
–publish published=5269,target=5269
–replicas 3
–mount src=yunobckp,dst=/home/yunohost.backup
–mount src=media,dst=/media
–mount src=yunosock,dst=/var/run/docker.sock,readonly
–mount src=yunocgroup,dst=/sys/fs/cgroup,readonly
domainelibre/yunohost3 /bin/systemd

But my web page doesn’t respond to invoke.
Swarm service runs correctly other jobs.
How can I run it properly? Is there a problem with my command?
Thanks.

Hello @zcatav
Hum, run Yunohost in Swarm, I think it’s overkill :open_mouth:
But it’s can worked, no problem with le command. But, you have to place a sticky bit, before Yunohost replicats, like with Treafik :wink:

Yunohost 4.0.8 images are available ! :slight_smile:

Warning, all links are changed ! Like domainelibre/yunohost3 became domainelibre/yunohost

1 Like

Thanks!
Be aware that you changed the labels in the first post, but not the actual links :wink:

2 Likes