Skip to content

Instantly share code, notes, and snippets.

View ashik4715's full-sized avatar
🏠
Working and Dying slowly

Ashikur Rahman ashik4715

🏠
Working and Dying slowly
View GitHub Profile
@ashik4715
ashik4715 / Docker The Beginning.md
Created January 31, 2022 12:50 — forked from utshab-roy/Docker The Beginning.md
This is the simple guide to use the docker and set environment for development. Youtube link: https://youtu.be/3xDAU5cvi5E

Docker Basic Command

Installation / Initialization

For demo, we will try to make a React app, and run it on docker. We use npx create-react-app my-app, to create the project.

First we have to make a file name Dockerfile with D capital. Here is a basic react app docker file.

FROM node:latest