本指南假设您已安装 Docker Desktop。
Docker 是一个平台,用于将应用程序打包并作为轻量级、可移植的容器运行,该容器封装了所有必要的依赖项。
要容器化我们的应用程序,我们定义一个 Dockerfile
。此文件包含初始化容器、将本地项目文件复制到其中、安装依赖项和启动应用程序的指令列表。
# use the official Bun image
# see all versions at https://hub.docker.com/r/oven/bun/tags
FROM oven/bun:1 AS base
WORKDIR /usr/src/app
# install dependencies into temp directory
# this will cache them and speed up future builds
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lock /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
# install with --production (exclude devDependencies)
RUN mkdir -p /temp/prod
COPY package.json bun.lock /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production
# copy node_modules from temp directory
# then copy all (non-ignored) project files into the image
FROM base AS prerelease
COPY --from=install /temp/dev/node_modules node_modules
COPY . .
# [optional] tests & build
ENV NODE_ENV=production
RUN bun test
RUN bun run build
# copy production dependencies and source code into final image
FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules
COPY --from=prerelease /usr/src/app/index.ts .
COPY --from=prerelease /usr/src/app/package.json .
# run the app
USER bun
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "index.ts" ]
现在您已经有了 Docker 镜像,让我们看看 .dockerignore
,它的语法与 .gitignore
相同,您需要在此处指定不得进入 Docker 构建任何阶段的文件/目录。 忽略文件的一个示例是
node_modules
Dockerfile*
docker-compose*
.dockerignore
.git
.gitignore
README.md
LICENSE
.vscode
Makefile
helm-charts
.env
.editorconfig
.idea
coverage*
我们现在将使用 docker build
将此 Dockerfile
转换为 Docker 镜像,这是一个自包含的模板,其中包含运行应用程序所需的所有依赖项和配置。
-t
标志允许我们为镜像指定名称,--pull
告诉 Docker 自动下载基础镜像 (oven/bun
) 的最新版本。 初始构建将花费更长的时间,因为 Docker 将下载所有基础镜像和依赖项。
docker build --pull -t bun-hello-world .
[+] Building 0.9s (21/21) FINISHED
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 37B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 35B 0.0s
=> [internal] load metadata for docker.io/oven/bun:1 0.8s
=> [auth] oven/bun:pull token for registry-1.docker.io 0.0s
=> [base 1/2] FROM docker.io/oven/bun:1@sha256:373265748d3cd3624cb3f3ee6004f45b1fc3edbd07a622aeeec17566d2756997 0.0s
=> [internal] load build context 0.0s
=> => transferring context: 155B 0.0s
# ...lots of commands...
=> exporting to image 0.0s
=> => exporting layers 0.0s
=> => writing image sha256:360663f7fdcd6f11e8e94761d5592e2e4dfc8d167f034f15cd5a863d5dc093c4 0.0s
=> => naming to docker.io/library/bun-hello-world 0.0s
我们构建了一个新的 Docker 镜像。 现在让我们使用该镜像来启动一个实际运行的容器。
我们将使用 docker run
使用 bun-hello-world
镜像启动一个新容器。 它将在分离模式 (-d
) 下运行,并且我们将容器的端口 3000 映射到本地机器的端口 3000 (-p 3000:3000
)。
run
命令打印一个字符串,表示容器 ID。
docker run -d -p 3000:3000 bun-hello-world
7f03e212a15ede8644379bce11a13589f563d3909a9640446c5bbefce993678d
容器现在在后台运行。 访问 localhost:3000。 您应该看到 Hello, World!
消息。
要停止容器,我们将使用 docker stop <container-id>
。
docker stop 7f03e212a15ede8644379bce11a13589f563d3909a9640446c5bbefce993678d
如果您找不到容器 ID,可以使用 docker ps
列出所有正在运行的容器。
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
7f03e212a15e bun-hello-world "bun run index.ts" 2 minutes ago Up 2 minutes 0.0.0.0:3000->3000/tcp flamboyant_cerf
就这样! 有关更高级的用法,请参阅 Docker 文档。