0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

How I Set Up Docker for My Project

Posted at

πŸ›  Introduction
In this post, I will show you how to quickly and easily set up Docker for your project to make development and deployment easier.

🎯 Why use Docker?
Environment isolation: code runs the same on any machine.
Ease of deployment: launch a project with a single command.
Time saving: no need to manually install dependencies.

πŸ”§ Installing Docker
Download and install Docker from the official website>

Let's check that everything is installed:
docker --version

πŸ— Creating a Dockerfile

Let's create a Dockerfile in the root of the project:
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]

What's going on here?
FROM β€” take the Node.js image.
WORKDIR β€” set the working directory.
COPY β€” copy files.
RUN β€” install dependencies.
CMD β€” run the project.

πŸ”₯ Building and running the container
Now let's build the image and run the container:
docker build -t my-app .
docker run -p 3000:3000 my-app

πŸŽ‰ Summary
Now your project is running in a Docker container! πŸš€

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?