本指南假定您已安装 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.lockb /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
# install with --production (exclude devDependencies)
RUN mkdir -p /temp/prod
COPY package.json bun.lockb /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 文档。