Heroku is a great solution for developing and deploying applications with minimal fuss. Depending on your needs and priorities, however, a Docker-based CI/CD pipeline might work even better. This article discusses the benefits of migrating from Heroku to…
Similar
We have performed an early check of the Docker to AWS feature which allows you running Docker containers on AWS. (more…)
Read more »
Containers are great for software developers but they create new challenges for operations teams running containerized applications. (more…)
Read more »
When you’re processing data, reading in files and writing out the result, containers are a great way to ensure reproducible runs. You package up all the binaries and libraries necessary to process your data, and each run uses the same files. But while Doc... (more…)
Read more »
The docker-compose tool is pretty popular for running dockerized applications in a local development environment. All we need to do is write a Compose file containing the configuration for the application’s services and have a running Docker engine for de... (more…)
Read more »
Mounting a folder to a Docker container allows you to share data back and forth on your host system. It’s a great feature to have especially on Windows where command line editors are not as native to the OS as they are with Unix/Linux. (more…)
Read more »