I wonder:
Is it possible to use containers as virtual machines?
At moment I’m building a small home server and I wanted to create two virtual machines on it: one for the installation of Nextcloud and and one for installing a separate PHP environment (for development purposes).
Is the same setup possible with containers? I mean: running a container with a RHEL filesystem and installing Nextcloud and/or a PHP environment inside of it?
The advantage of this would be that you don’t have the overhead of extra guest kernels.
Hello @j.verhoeckx ,
There is a way to use VM images to create base container images, but I would point you to podman search php as a way to find if there are container images available like you are wanting. From that command I get “redhat.comregistry.access.redhat.com/codeready-workspaces/stacks-php Red Hat CodeReady Workspaces- PHP Stack cont… 0” as one option (sorry for the truncated content). From that I would then do podman pull registry.access.redhat.com/codeready-workspaces/stacks-php and then podman images to find the image I just pulled. Thenpodman run -it --rm <image ID> /bin/bash and I am at a bash prompt of a code ready PHP stack in a container. --rm to have the container removed after exit, the image would still be there though.
Nextcloud is a bit hostile with containers. Some features might not work. As for the development environments you can use containers effectively. You can use podman directly or use toolbox. If you like toolbox but would like to avoid sharing your home directory with the containers you can use tlbx which is a small bash tool similar to toolbox and can easily get you started with small modifications.
Thanks for the information! Seems really interesting!
I see the Red Hat Codeready image contains Apache and PHP but it’s unclear if it contains a database.
I pulled and run the image and I’m able the access it. Now I only have one last question: on which IP address can I access the web server?
I realize that I don’t know enough about containers so I will keep using virtual machines for the server that I’m building. As @lispydobby points out, a virtual machine is also a better fit for Nextcloud. For the development environment I will create a second virtual machine.
If you have Fedora up and running, I’d highly recommend reading up on Fedora Magazine about using Podman. It’s pretty great and not too difficult to learn. Here are a few articles I’d recommend to get started with:
Once you’ve deployed a container and then removed it a few times, you’ll get pretty comfortable and doing the stuff you would like to do like deploying NextCloud or have a development environment will come easy.
What you describe seems really interesting and tempting! The tutorials you mention seem easy to follow.
A few questions:
Lispy Dobby writes that Nextcloud is a bit hostile with containers and that some features might not work. Do you think I could install Nextcloud groupware / LibreOffice Online / Nextcloud Talk inside the Nextcloud container?
I just installed Red Hat Enterprise Linux 8.4 and Cockpit on a small server (an Intel NUC). Maybe I can create the same setup as mentioned in the article ‘Installing Nextcloud 20 on Fedora Linux with Podman’ with Cockpit (Cockpit has a Podman application)? Of course I could always use the command-line.
The benefit of using contains / Podman would be that it’s probably much more efficient than using virtual machines (and you don’t have to install RHEL ever time).
Lispy Dobby writes that Nextcloud is a bit hostile with containers and that some features might not work. Do you think I could install Nextcloud groupware / LibreOffice Online / Nextcloud Talk inside the Nextcloud container?
Those will run fine for the most part. Once you have it running you can go to the “App” page and install them. Depending on the image you use, there will be some errors about an optional library not being installed, and some apps might want some additional packages installed in the image. If this is the case and they’re important enough that you want them, you can build the image yourself.
I just installed Red Hat Enterprise Linux 8.4 and Cockpit on a small server (an Intel NUC). Maybe I can create the same setup as mentioned in the article ‘Installing Nextcloud 20 on Fedora Linux with Podman’ with Cockpit (Cockpit has a Podman application)? Of course I could always use the command-line.
This will work just fine. I have mine running on Fedora 34 on a dual core Intel Atom board with 4GB of RAM I bought in like 2009. RHEL 8.4 ships with podman 3 so it does everything you need it to do. For the most part, there’s only a few podman commands you need to get familiar with to get started:
This lets you manage the images you have store locally:
podman image ls | rm | pull
This lets you look up and manage your containers that have been created from the downloaded images: