Skip to content

doc: Korean translation nodejs-docker-webapp.md #4733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions locale/ko/docs/guides/nodejs-docker-webapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ touch Dockerfile
Open the `Dockerfile` in your favorite text editor

The first thing we need to do is define from what image we want to build from.
Here we will use the latest LTS (long term support) version `12` of `node`
Here we will use the latest LTS (long term support) version `16` of `node`
available from the [Docker Hub](https://hub.docker.com/):

```docker
FROM node:12
FROM node:16
```
-->

Expand All @@ -171,10 +171,10 @@ touch Dockerfile

가장 먼저 해야 할 것은 어떤 이미지를 사용해서 빌드할 것인지를 정의하는 것입니다. 여기서는
[Docker Hub](https://hub.docker.com/)에 있는
`node`의 최신 LTS(장기 지원) 버전인 `12`을 사용할 것입니다.
`node`의 최신 LTS(장기 지원) 버전인 `16`을 사용할 것입니다.

```docker
FROM node:12
FROM node:16
```

<!--
Expand Down Expand Up @@ -282,7 +282,7 @@ CMD [ "node", "server.js" ]
Your `Dockerfile` should now look like this:

```docker
FROM node:12
FROM node:16

# Create app directory
WORKDIR /usr/src/app
Expand Down Expand Up @@ -314,7 +314,7 @@ CMD [ "node", "server.js" ]
`Dockerfile`은 다음과 같아야 합니다.

```docker
FROM node:12
FROM node:16

# 앱 디렉터리 생성
WORKDIR /usr/src/app
Expand Down Expand Up @@ -380,7 +380,7 @@ $ docker images

# Example
REPOSITORY TAG ID CREATED
node 8 1934b0b038d1 5 days ago
node 16 1934b0b038d1 5 days ago
<your username>/node-web-app latest d64d3505b0d2 1 minute ago
```
-->
Expand All @@ -402,7 +402,7 @@ $ docker images

# 예시
REPOSITORY TAG ID CREATED
node 12 1934b0b038d1 5 days ago
node 16 1934b0b038d1 5 days ago
<your username>/node-web-app latest d64d3505b0d2 1 minute ago
```

Expand Down