What #containerization solution is recommended right now for deployment, say of #WordPress? I understand #Docker is dwindling, but it's the only one I know. I know Guix has some nice features, but it's not portable enough for my student devs and my production environments.
@worldsendless If you break up the parts of the problem:
1. For *running* the container, containerd is the default choice - it runs most containers in the cloud today
2. For *building* the container image, buildkit is a very good option
3. Running wordpress will need a DB and possibly a prebuilt image - 2 options for deployment model - you could do a single VM with docker-compose, or you could do a K8S cluster connected to a hosted DB
4. You can also find prebuilt Wordpress images online