A simple walkthough of how to setup development environemnts for couple of projects in different programming languages e.g. (c# and nodejs) using Docker.
- Setup
docker-compose.yml
file - Create a dockerfile for specific services
- To build individual application run
docker-compose build nodejs
ordocker-compose build csharp
- To build the all project
docker-compose up -d
- Push the container to dockerhub
Use as a reference materials only.