Using a straight forward environment setup for a wordpress website, a local AMP stack for development, staging environment for reviewing/signoff and finally a production environment, what would be the best option quickly move the environments?
local (dev) > staging > development
Different developers should be easily able to simulate the website (with a similar server setup), then committing to git when they’ve finished a feature. (Then a travis kicks in based on the commit which runs testing)
Then it must be easily movable to the staging server so it can be reviewed by the customer to finally be released to production.
Reading Docker’s documentation is meets the requirements, however this seems like a overkill.
Yes, Docker seems an overkill for what you want, you can do this with Grunt and grunt-ftp-deploy
Example:
You can add a task to your grunt file for dev, staging and production.
Let’s take staging as example.
You can add this inside your staging task.
About Docker:
Often Docker is used in continuous deployment for complete environments. You can do for example something like this in your Dockerfile.