DEV Community

Discussion on: How does deployment work at your organization?

Collapse
 
nombrekeff profile image
Keff

At our company we have 2 separated environments (PRE/PROD), we have a couple of different pipelines:

For PRE we do CI/CD with GH Actions, anything we push to master (if it passes the tests) we build a docker image, then the action calls a webhook wich tells Portainer that it should update the container with the newly built image.

For PROD it's quite similar, the only difference is we only deploy when a Release is published (we don't like CI/CD for production).

We previously used Jenkins, and before that, we uploaded with SSH (does the job :P).