docker-course

docker-course

Docker全栈应用开发与部署实践教程

本项目提供全面的Docker教程,包括前端、后端和数据库应用的容器化。涵盖Docker基础知识、Docker Compose多容器管理,以及docker init、docker compose watch等新特性。通过React、Vue、MERN栈和Next.js等实例,展示主流技术栈的Docker化过程。适合开发者学习在实际项目中高效应用Docker技术。

Docker容器化开发环境全栈应用DevOpsGithub开源项目
<div align="center"> <br /> <a href="https://youtu.be/GFgJkfScVNU?feature=shared" target="_blank"> <img src="https://github.com/JavaScript-Mastery-Pro/docker-course/assets/151519281/983e334b-6f3a-47d1-8ea6-52139796da20" alt="Project Banner"> </a> <br /> <div> <img src="https://img.shields.io/badge/-Node_JS-black?style=for-the-badge&logoColor=white&logo=nodedotjs&color=339933" alt="nodedotjs" /> <img src="https://img.shields.io/badge/-Next_JS-black?style=for-the-badge&logoColor=white&logo=nextdotjs&color=000000" alt="nextdotjs" /> <img src="https://img.shields.io/badge/-Docker-black?style=for-the-badge&logoColor=white&logo=docker&color=2496ED" alt="docker" /> <img src="https://img.shields.io/badge/-MongoDB-black?style=for-the-badge&logoColor=white&logo=mongodb&color=47A248" alt="mongodb" /> <img src="https://img.shields.io/badge/-Vite-black?style=for-the-badge&logoColor=white&logo=vite&color=646CFF" alt="vite" /> </div> <h3 align="center">Docker Crash Course</h3> <div align="center"> Learn how to Dockerize various applications step by step with our detailed tutorial on <a href="https://www.youtube.com/@javascriptmastery/videos" target="_blank"><b>JavaScript Mastery</b></a> YouTube. Join the JSM family! </div> </div> <br />

📋 <a name="table">Table of Contents</a>

  1. 🤖 Introduction
  2. ⚙️ Tech Stack
  3. 🔋 Features
  4. 🤸 Quick Start
  5. 📦 Starter Kit
  6. 🕸️ Code Snippets
  7. 🚀 More
<br />

🚨 Tutorial

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>

<a name="introduction">🤖 Introduction</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>

<a name="tech-stack">⚙️ Tech Stack</a>

  • Docker
  • Node.js
  • React.js
  • Vite
  • MongoDB
  • Express.js
  • Next.js
  • Tailwind CSS

<a name="features">🔋 Features</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 🐳

<a name="quick-start">🤸 Quick Start</a>

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.

<a name="starter-kits">📦 Starter Kits</a>

Get the starter kits for a few corresponding applications used in the project

<a name="code-snippets">🕸️ Code Snippets</a>

<details> <summary><code>hello-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>react-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/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>
# 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/frontend/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/backend/Dockerfile</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
</details> <details> <summary><code>mern-docker/compose.yaml</code></summary>
# 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

编辑推荐精选

Vora

Vora

免费创建高清无水印Sora视频

Vora是一个免费创建高清无水印Sora视频的AI工具

Refly.AI

Refly.AI

最适合小白的AI自动化工作流平台

无需编码,轻松生成可复用、可变现的AI自动化工作流

酷表ChatExcel

酷表ChatExcel

大模型驱动的Excel数据处理工具

基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。

AI工具酷表ChatExcelAI智能客服AI营销产品使用教程
TRAE编程

TRAE编程

AI辅助编程,代码自动修复

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

AI工具TraeAI IDE协作生产力转型热门
AIWritePaper论文写作

AIWritePaper论文写作

AI论文写作指导平台

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

AI辅助写作AI工具AI论文工具论文写作智能生成大纲数据安全AI助手热门
博思AIPPT

博思AIPPT

AI一键生成PPT,就用博思AIPPT!

博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。

AI办公办公工具AI工具博思AIPPTAI生成PPT智能排版海量精品模板AI创作热门
潮际好麦

潮际好麦

AI赋能电商视觉革命,一站式智能商拍平台

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

iTerms

iTerms

企业专属的AI法律顾问

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

SimilarWeb流量提升

SimilarWeb流量提升

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

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

Sora2视频免费生成

Sora2视频免费生成

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

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

下拉加载更多