Software Alternatives & Reviews

Deployer Reviews

Deployment Tool for PHP

Social recommendations and mentions

We have tracked the following product recommendations or mentions on Reddit and HackerNews. They can help you see what people think about Deployer and what they use it for.
  • Does anybody use GitHub actions for deployment?
    Yes, in combination with PHP deployer: https://deployer.org/. - Source: Reddit / 25 days ago
  • Ask HN: Easiest and cheapest full-stack frameworks that you love?
    Is there an equivalent for deployer in .NET world? https://deployer.org/. - Source: Hacker News / about 2 months ago
  • Ideas for minimum PHP pipeline for a small team
    We have recently moved from jenkins + deployer.org to envoyer.. Alot of value and ease of life considering the monthly fee.... - Source: Reddit / 3 months ago
  • Ideas for minimum PHP pipeline for a small team
    The easiest way to switch from your current ssh -> git pull deployment to CI deployment is the switch to Deployer. https://deployer.org/ which is doing something similar but in a blue/green deployment way. A github action for it can look like this:. - Source: Reddit / 3 months ago
  • What are your deployment steps for continuous delivery with a Laravel App?
    I would also check out PHP Deployer (https://deployer.org/) as an open source/free alternative to some of those paid solutions mentioned in other comments. - Source: Reddit / 3 months ago
  • What are your deployment steps for continuous delivery with a Laravel App?
    We run a GitHub Actions workflow on push to master / PR merges for our Laravel apps that builds our assets, runs tests & code quality checks, then deploys to our server(s) using Deployer. - Source: Reddit / 3 months ago
  • What are your deployment steps for continuous delivery with a Laravel App?
    I use deployer and deployphp github action. - Source: Reddit / 3 months ago
  • How to deploy LAMP stack
    Setup blue/green deployments or go fancy with something like deployer. - Source: Reddit / 5 months ago
  • How to deploy an app?
    I'm not looking for a hosting, I'm looking for the equivalent of deployer.org for node. A package that handles the process to git pull, install dependencies, rollback if necessary, etc... When I search for "how to deploy a node app" all I get is tutorials on how to deploy to Heroku, Vercel & other cloud providers :(. - Source: Reddit / 5 months ago
  • Best setup for a PHP (Laravel) site using CDK?
    If you aren't then https://deployer.org/ is pretty easy for beginners. - Source: Reddit / 5 months ago
  • Unix legend Brian Kernighan, who is the "k" in "awk" and is 80 years old, keeps fixing things. He has added Unicode support to awk, but he couldn't figure out how use git, so he just emailed his changes to the current maintainer
    Yes, like Deployer. Or I deliver my crap in a way that doesn't use git directly (if at all), like docker images that already include all of the code needed. - Source: Reddit / 7 months ago
  • Deploy Craft CMS with DDEV, Deployer and Ploi on Hetzner Cloud - Part 1
    The following Deployer workflow is a nice option if your target production server supports composer, NodeJS and SSH. You can write your deploy routine in PHP (instead of fiddling around with Github Action pipeline commands) and test it beforehand locally. - Source: dev.to / 8 months ago
  • Statamic meets Hetzner Cloud, Ploi and Deployer
    Namespace Deployer; Require 'contrib/npm.php'; // https://deployer.org/docs/7.x/contrib/npm Import('recipe/statamic.php'); // https://deployer.org/docs/7.x/recipe/statamic Set('application', 'My Statamic Site'); // The git repository which should be used Set('repository', '[email protected]:mandrasch/my-statamic-site.git'); // Targets for deployment (SSH), // this will be called via 'ddev dep deploy... - Source: dev.to / 9 months ago
  • SSH Certificate - automating authentication
    We also currently deploy using a script which ssh's in to the server (similar to Deployer) which needs access. - Source: Reddit / 10 months ago
  • How were applications deployed before the advent of containers?
    Two deployment techs I use for non-containerized apps work in roughly the same way. Capistrano And Deployer. - Source: Reddit / 10 months ago
  • Weekly "ask anything" thread
    Second, as you are using this for deployment, I would properly recommend using tools designed for that, it could be deployer. - Source: Reddit / about 1 year ago
  • Automate Deployments on Merge to Main Branch
    SSH-ing into servers and doing a git pull is an approach I've used before with PHP. One thing to lookout for is if that server is taking requests during the git pull. If so, this can lead to some requests failing as files change during the pull. A way to address this is to have a symlink'ed webroot. That way you can keep multiple copies of your repo on the server and swap the symlink once the git pull is done.... - Source: Reddit / about 1 year ago
  • What I can do to do more and more devops things?
    Ansible is great but if you feel that it's too much, you could start with someting like deployer.org, that you can configure and run locally or from CI. - Source: Reddit / over 1 year ago
  • good evening dev, i am uploading a laravel project with filezilla to my hosting for the first time, but i noticed that it takes a long time. What is the best way?
    If you know ssh or would like to dive into it, I’d give deployer a go. If not, just use forge. You’ll need git for both of these. - Source: Reddit / over 1 year ago
  • Yes, PHP Is Worth Learning/Using in $Current_year
    This is not accurate. While some shared hosts offer node or rails you will be limited by memory and it might not even run your app. The reason PHP is so good for shared hosting is that it runs per request and when you have rarely visited PHP application it requires basically no resources. You can have 100s of small websites sharing resources that get few visitors a day on single server and it will be fine. Try... - Source: Hacker News / over 1 year ago
  • I am lost on how to "correctly" deploy my app to the production server
    I use Deployer - for both personal and work projects. It's easy to configure, simple to use and it uses "atomic deployments" - so there is zero downtime. - Source: Reddit / over 1 year ago

Do you know an article comparing Deployer to other products?
Suggest a link to a post with product alternatives.