Docker入门之——Docker安装Node(7)

一 概述

  • 搜索Node镜像
  • 安装Node镜像
  • 创建Node容器
  • 查看Node信息

二 搜索Node镜像

2.1 准备条件

  • VPN

2.2 搜索Node镜像

1-在搜索框中输入node

2-下拉列表选择node版本

三 安装Node镜像

1-点击Pull,拉取镜像

2-开始下载,显示进度

3-Images列表,显示已下载镜像

四 创建Node容器

4.1 查看本地镜像

终端指令

1
docker images

结果

1
2
3
C:\Users\83422>docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
node latest 69e667a79aa4 12 days ago 1.6GB

4.2 运行容器

终端指令

1
docker run -itd --name node-test node

图示

四 查看Node信息

4.1 进入docker 终端

操作指令

1
docker exec -it node-test /bin/bash

执行结果

1
2
C:\Users\83422>docker exec -it node-test /bin/bash
root@9341936c0405:/#

4.2 查看Node版本

操作指令

1
node -v

执行结果

1
2
3
root@9341936c0405:/# node -v
v22.9.0
root@9341936c0405:/#

五 参考

  • 菜鸟教程—Docker 安装 Node