This repository contains the code corresponding to an in-depth tutorial available on our YouTube channel, <a href="https://www.youtube.com/@javascriptmastery/videos" target="_blank"><b>JavaScript Mastery</b></a>.
If you prefer visual learning, this is the perfect resource for you. Follow our tutorial to learn how to build projects like these step-by-step in a beginner-friendly manner!
<a href="https://youtu.be/GFgJkfScVNU?feature=shared" target="_blank"><img src="https://github.com/sujatagunale/EasyRead/assets/151519281/1736fca5-a031-4854-8c09-bc110e3bc16d" /></a>
Learn the process of containerizing frontend, backend, and database applications built with diverse tech stacks like React, Vue, Svelte, or any Vite projects. Additionally, it covers examples of the containerization of complete full-stack applications, including MERN setups or the popular Monorepo full-stack applications using Next.js 14+.
This repository contains the corresponding code for all these dockerized applications using the latest Docker features, including docker-compose watch and init.
If you're getting started and need assistance or face any bugs, join our active Discord community with over 27k+ members. It's a place where people help each other out.
<a href="https://discord.com/invite/n6EdbFJ" target="_blank"><img src="https://github.com/sujatagunale/EasyRead/assets/151519281/618f4872-1e10-42da-8213-1d69e486d02e" /></a>
👉 Fundamentals of Docker: Understand the fundamentals of Docker, its purpose, and advantages.
👉 Managing Images and Containers with Docker Compose: Explore Docker Compose for orchestrating multiple images and containers efficiently.
👉 Latest Docker Features: Learn new features such as docker init, docker scout, and docker compose watch for enhanced development workflows.
👉 Working with Volumes: Learn how to use volumes for persistent data management in Docker containers
👉 Port Mapping with Network: Implement port mapping using Docker's networking capabilities
👉 Dockerizing React Applications with Vite: Step-by-step guide on Dockerizing React applications built with Vite.
👉 Dockerizing Vite Applications (Vue or Svelte): Extend the knowledge to Dockerizing Vite applications, supporting Vue or Svelte frameworks.
👉 Dockerizing Full Stack Applications: Dockerize a complete MERN stack application, covering frontend, backend, and database.
👉 Dockerizing Monorepo Full Stack Applications (Next.js 14+): Explore Dockerizing Monorepo full-stack applications using the latest features of Next.js (version 14 and above).
👉 Publishing Docker Images: Learn the steps to publish Docker images, making your applications accessible to a broader audience.
...and much more, covering the best practices and usage of different commands in 🐳
Follow these steps to set up the project locally on your machine.
Prerequisites
Make sure you have the following installed on your machine:
Cloning the Repository
git clone https://github.com/your-username/your-project.git cd your-project
Installation
Install the project dependencies using npm:
npm install
Set Up Environment Variables
For a few specific applications, we require environment variables. I've included a sample .env.example file for these essential projects. However, one crucial element needed for these projects is,
DB_URL=
For full stack applications, we'll be using MongoDB as a database. So do create an account on MongoDB Atlas as well as install MongoDB Compass for creating local database instance for the project.
Running the Project
npm start
Open http://localhost:3000 in your browser to view the project.
Get the starter kits for a few corresponding applications used in the project
</details> <details> <summary><code>react-docker/Dockerfile</code></summary># select the base image to run the app. We want to run a javascript app, so we use the node runtime image from docker hub # we can use any image from docker hub. We can also use a custom image that we have created # node:20-alpine -> node is the image name, 20-alpine is the tag # alpine is a lightweight version of linux # we can see complete list of node image tags here: https://hub.docker.com/_/node FROM node:20-alpine # set the working directory to /app. This is the directory where the commands will be run. We can use any directory name but /app is a standard convention WORKDIR /app # copy everything from the current directory to the PWD (Present Working Directory) inside the container. # First `.` is the path to the current directory on the host machine. Second `.` is the path to the current directory inside the container i.e., source and destination # source - current directory on the host machine # destination - current directory inside the container (/app) COPY . . # commands to run the app CMD node hello.js # build the image # docker build -t hello-docker . # -t -> tag the image with a name # hello-docker -> name of the image # . -> path to the Dockerfile
</details> <details> <summary><code>vite-docker/Dockerfile</code></summary># set the base image to create the image for react app FROM node:20-alpine # create a user with permissions to run the app # -S -> create a system user # -G -> add the user to a group # This is done to avoid running the app as root # If the app is run as root, any vulnerability in the app can be exploited to gain access to the host system # It's a good practice to run the app as a non-root user RUN addgroup app && adduser -S -G app app # set the user to run the app USER app # set the working directory to /app WORKDIR /app # copy package.json and package-lock.json to the working directory # This is done before copying the rest of the files to take advantage of Docker’s cache # If the package.json and package-lock.json files haven’t changed, Docker will use the cached dependencies COPY package*.json ./ # sometimes the ownership of the files in the working directory is changed to root # and thus the app can't access the files and throws an error -> EACCES: permission denied # to avoid this, change the ownership of the files to the root user USER root # change the ownership of the /app directory to the app user # chown -R <user>:<group> <directory> # chown command changes the user and/or group ownership of for given file. RUN chown -R app:app . # change the user back to the app user USER app # install dependencies RUN npm install # copy the rest of the files to the working directory COPY . . # expose port 5173 to tell Docker that the container listens on the specified network ports at runtime EXPOSE 5173 # command to run the app CMD npm run dev
</details> <details> <summary><code>vite-docker/compose.yaml</code></summary># set the base image to create the image for react app FROM node:20-alpine # create a user with permissions to run the app # -S -> create a system user # -G -> add the user to a group # This is done to avoid running the app as root # If the app is run as root, any vulnerability in the app can be exploited to gain access to the host system # It's a good practice to run the app as a non-root user RUN addgroup app && adduser -S -G app app # set the user to run the app USER app # set the working directory to /app WORKDIR /app # copy package.json and package-lock.json to the working directory # This is done before copying the rest of the files to take advantage of Docker’s cache # If the package.json and package-lock.json files haven’t changed, Docker will use the cached dependencies COPY package*.json ./ # sometimes the ownership of the files in the working directory is changed to root # and thus the app can't access the files and throws an error -> EACCES: permission denied # to avoid this, change the ownership of the files to the root user USER root # change the ownership of the /app directory to the app user # chown -R <user>:<group> <directory> # chown command changes the user and/or group ownership of for given file. RUN chown -R app:app . # change the user back to the app user USER app # install dependencies RUN npm install # copy the rest of the files to the working directory COPY . . # expose port 5173 to tell Docker that the container listens on the specified network ports at runtime EXPOSE 5173 # command to run the app CMD npm run dev
</details> <details> <summary><code>mern-docker/frontend/Dockerfile</code></summary># define the services/containers to be run services: # define the application container/service # we can use any name for the service. Here it is `web` # we can create multiple services as well web: # specify the image to build the container from # this can be any image available in docker hub or a custom one or the one we want to build build: # specify the path to the Dockerfile context: . # specify the file name (optional) dockerfile: Dockerfile # specify the port mapping from host to the container # this is similar to the -p flag in `docker run` command # first port is the port on host machine and the second is the port inside the container ports: - 5173:5173 # specify the volumes to mount # what this does is it mounts the current directory to the `/app` directory inside the container. # due to this, any changes made to the files in the current directory will be reflected inside the container. It is similar to the -v flag in `docker run` command. # even if a container is stopped or deleted, volumes are not deleted and can be used by other containers as well. volumes: # over here, we are mounting the current directory to the `/app` directory inside the container (which is the working directory of the container) # syntax is `<path to the directory on host>:<path to the directory inside the container>` # we're doing this because we want to reflect the changes made to the files in the current directory inside the container - .:/app # we also mount the node_modules directory inside the container at /app/node_modules. This is done to avoid installing the node_modules inside the container. # node_modules will be installed on the host machine and mounted inside the container - /app/node_modules
</details> <details> <summary><code>mern-docker/backend/Dockerfile</code></summary>FROM node:20-alpine3.18 # RUN addgroup app && adduser -S -G app app # USER app WORKDIR /app COPY package*.json ./ # USER root # RUN chown -R app:app . # USER app RUN npm install COPY . . EXPOSE 5173 CMD npm run dev
</details> <details> <summary><code>mern-docker/compose.yaml</code></summary>FROM node:20-alpine3.18 RUN addgroup app && adduser -S -G app app USER app WORKDIR /app COPY package*.json ./ # change ownership of the /app directory to the app user USER root # change ownership of the /app directory to the app user # chown -R <user>:<group> <directory> # chown command changes the user and/or group ownership of for given file. RUN chown -R app:app . # change the user back to the app user USER app RUN npm install COPY . . EXPOSE 8000 CMD npm start
# specify the version of docker-compose version: "3.8" # define the services/containers to be run services: # define the frontend service # we can use any name for the service. A standard naming convention is to use "web" for the frontend web: # we use depends_on to specify that service depends on another service # in this case, we specify that the web depends on the api service # this means that the api service will be started before the web service depends_on: - api # specify the build context for the web service # this is the directory where the Dockerfile for the web service is located build: ./frontend # specify the ports to expose for the web service # the first number is the port on the host machine # the second number is the port inside the container ports: - 5173:5173 # specify the environment variables for the web service # these environment variables will be available inside the container environment: VITE_API_URL: http://localhost:8000 # this is for docker compose watch mode # anything mentioned under develop will be watched for changes by docker compose watch and it will perform the action mentioned develop: # we specify the files to watch for changes watch: # it'll watch for changes in package.json and package-lock.json and rebuild the container if there are any changes - path: ./frontend/package.json action: rebuild - path: ./frontend/package-lock.json action: rebuild # it'll watch for changes in the frontend directory and sync the changes with the container real time - path: ./frontend target: /app action: sync # define the api service/container api: # api service depends on the db service so the db service will be started before the


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。


企业专属的AI法律顾问
iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。


稳定高效的流量提升解决方案,助力品牌曝光
稳定高效的流量提升解决方案,助力品牌曝光


最新版Sora2模型免费使用,一键生成无水印视频
最新版Sora2模型免费使用,一键生成无水印视频


实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。


选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。


AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。


最强AI数据分析助手
小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。


像人一样思考的AI智能体
imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并且交付结果的AI智能体。


AI数字人视频创作平台
Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号