|
|
|
|
|
by chrisvalleybay
3035 days ago
|
|
AWS, mostly.
On my servers I have simple shell scripts that have functions for pulling and running Docker images.
Locally I use rake to build and push Docker images. Finally, Rake executes the deploy script on the server via ssh which pulls and runs the new images. It's not fancy like dokku (or even Docker Compose), but it's composed of very minor pieces that are easy to debug and extend. Not knowing if Docker Compose has executed successfully, and if I'm on the newest image or not, grew to be an extra todo in my checklist when debugging my applications. |
|