You have to download docker first, then enable virtualization support from the BIOS. Also don’t forget to add the required “groups” to your current user. Then run the docker command (privilege escalation would be necessary, so use with sudo or doas):
$ docker run -it -e LEMMY_DOMAIN='lemmydomain.com' -p "8080:8080" ghcr.io/rystaf/mlmym:latest
But this is a web application, not a native client. Why do you want this? There’s probably someone out there running mlmym for your instance.
Virtualization isn’t required for docker on Linux generally, unless a container tries to use KVM or something like that. Also docker already exists in Ubuntu’s repos under the docker.io package so that’s the easiest place to download (apt install docker.io) from.
You have to download docker first, then enable virtualization support from the BIOS. Also don’t forget to add the required “groups” to your current user. Then run the docker command (privilege escalation would be necessary, so use with
sudo
ordoas
):But this is a web application, not a native client. Why do you want this? There’s probably someone out there running mlmym for your instance.
Virtualization isn’t required for docker on Linux generally, unless a container tries to use KVM or something like that. Also docker already exists in Ubuntu’s repos under the
docker.io
package so that’s the easiest place to download (apt install docker.io
) from.