computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
811 B
811 B
To migrate an existing application into a containerized environment, you’ll need to adapt the following steps to your particular context:
- Figure out what parts of the application need to be containerized together.
- Create your Dockerfiles and define the entire architecture in that configuration, including the interservice dependencies that there might be.
- Figure out if you also need to containerize any external dependency, such as a database. If you do, add that to the Dockerfile.
- Build the actual docker image.
- Once you make sure it runs locally, configure the orchestration tool you use to manage the containers.
- You’re now ready to deploy to production, however, make sure you keep monitoring and alerting on any problem shortly after the deployment in case you need to roll back.