I'm currently running a web application with Python, Node.js, Apache, and a database on Docker. I'm looking to transition this setup to Kubernetes using Talos on a physical server. I've come across tools like Kompose and learned about image caching on Talos, but I'm not sure how to handle moving the images and configurations. When I use Kompose, it creates a new image as if I had a Docker Hub account, which I don't have for this project. I'm hoping to get some insights on how to deploy a LAMP stack in this environment, understand the basics, and explore my options for a smooth migration.
1 Answer
It sounds like your main issue might be the registry part. You can set up your pods to pull images from a local Docker registry or any remote registry if you decide to go that route. That way, you can control your images without needing Docker Hub.

Are there ways to do this without having a local or remote Docker registry?