https://github.com/kalwar/dockerdev
A simple walkthrough of how to setup development environments
https://github.com/kalwar/dockerdev
csharp docker docker-compose nodejs simple-app
Last synced: about 2 months ago
JSON representation
A simple walkthrough of how to setup development environments
- Host: GitHub
- URL: https://github.com/kalwar/dockerdev
- Owner: kalwar
- Created: 2022-03-01T18:28:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-02T11:39:15.000Z (over 4 years ago)
- Last Synced: 2025-06-29T09:39:21.135Z (12 months ago)
- Topics: csharp, docker, docker-compose, nodejs, simple-app
- Language: HTML
- Homepage:
- Size: 1.36 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Container Exploration
## Project description
A simple walkthough of how to setup development environemnts for couple of projects in different programming languages
e.g. (c# and nodejs) using Docker.
## Steps
1. Setup `docker-compose.yml` file
2. Create a dockerfile for specific services
3. To build individual application run `docker-compose build nodejs` or `docker-compose build csharp`
4. To build the all project `docker-compose up -d`
5. Push the container to dockerhub
## References
Use as a reference materials only.