dan_default
dan_default

Reputation: 53

Wordpress sites and Kinsta. Is Docker applicable?

I've started trying to understand Docker. However, it would appear that Docker can only "deploy containers" to AWS and MS Azure. We deploy Wordpress sites to Kinsta.

With regard to Wordpress and Kinsta, is Docker useful at all?

Upvotes: 1

Views: 661

Answers (2)

Virtua Creative
Virtua Creative

Reputation: 2113

Now it is. You can use DevKinsta locally to manage your WP sites. And DevKinsta uses Docker to build and deploy your site. Which is similar to what it does in production environments on GCP, from my understanding.

You can also deploy your WP website to Kinsta from GitHub or GitLab. For example, this document shows how to deploy a WP site to Kinsta using GitLab CI/CD.

Furthermore, now Kinsta offers application hosting and database hosting. You can use a Dockerfile to configure your app's deployment to Kinsta.

Upvotes: 0

David Maze
David Maze

Reputation: 158977

With regard to Wordpress and Kinsta, is Docker useful at all?

No.

Kinsta appears to offer fully-managed WordPress hosting, or "software as a service". You get to use WordPress via their administrative console and hosting tools, but you personally do not directly install WordPress or the underlying database.

Docker is a packaging and distribution mechanism for software. It's certainly common enough to install and deploy WordPress via Docker, but this isn't something you'd need to do with a SaaS service like Kinsta: they've already installed and deployed WordPress for you.

Upvotes: 2

Related Questions