Engineering Tools for AI

编程

Docker

整理 Docker image、container、Dockerfile、Compose、port、volume、log 与常见问题的搜索型指南。

33 个项目

核心概念

Docker

Docker

docker --version

含义

A tool for packaging and running applications in isolated containers.

使用场景

Use it when you want the app to run with the same OS packages, runtime, and dependencies across machines.

示例

docker --version

请求示例

Explain whether this project can be run with Docker.

核心概念

Docker daemon

Docker daemon

Cannot connect to the Docker daemon

含义

The background service that builds images and runs containers.

使用场景

If Docker commands cannot connect, Docker Desktop or the Docker service may not be running.

示例

Cannot connect to the Docker daemon

请求示例

Check why Docker commands cannot connect to the daemon.

核心概念

Image

Image

node:20-alpine

含义

A reusable template used to create containers.

使用场景

Images define what OS, runtime, libraries, and app files a container starts with.

示例

node:20-alpine

请求示例

Tell me which base image this Dockerfile uses.

核心概念

Container

Container

docker ps

含义

A running or stopped instance created from an image.

使用场景

Use containers to run the app, database, cache, or worker in isolated environments.

示例

docker ps

请求示例

List running containers and explain what each one does.

核心概念

Registry

Registry

docker pull postgres:16

含义

A server where Docker images are stored and downloaded from.

使用场景

Docker Hub and private registries are used to share base images or deployable app images.

示例

docker pull postgres:16

请求示例

Explain where this image will be downloaded from.

Dockerfile

Dockerfile

Dockerfile

Dockerfile

含义

A file that defines how to build a Docker image.

使用场景

Use it to install dependencies, copy app files, and define the command that starts the app.

示例

Dockerfile

请求示例

Read this Dockerfile and summarize the build steps.

Dockerfile

FROM

FROM

FROM node:20-alpine

含义

The Dockerfile instruction that chooses the base image.

使用场景

It decides the starting OS layer and often the runtime version.

注意

Changing the base image can affect available commands, security updates, and image size.

示例

FROM node:20-alpine

请求示例

Explain what this FROM image includes.

Dockerfile

WORKDIR

WORKDIR

WORKDIR /app

含义

Sets the folder inside the image where following commands run.

使用场景

Use it so COPY, RUN, and CMD commands operate from a predictable app folder.

示例

WORKDIR /app

请求示例

Explain which folder this Dockerfile uses as the app directory.

Dockerfile

COPY

COPY

COPY package.json package-lock.json ./

含义

Copies files from the build context into the image.

使用场景

Use it to add dependency files, source code, and static assets to the image.

示例

COPY package.json package-lock.json ./

请求示例

Tell me which files this COPY step adds to the image.

Dockerfile

RUN

RUN

RUN npm ci

含义

Runs a command while building the image.

使用场景

Use it to install OS packages, install dependencies, or build app files.

注意

RUN happens at image build time, not when the container starts.

示例

RUN npm ci

请求示例

Separate Dockerfile build-time commands from container startup commands.

Dockerfile

CMD

CMD

CMD ["npm", "run", "start"]

含义

Defines the default command that runs when the container starts.

使用场景

Use it to start the web server, API server, worker, or script.

示例

CMD ["npm", "run", "start"]

请求示例

Tell me what command this container starts with.

Dockerfile

EXPOSE

EXPOSE

EXPOSE 3000

含义

Documents which port the containerized app is expected to listen on.

使用场景

Use it as a hint, then publish the port with docker run -p or compose ports.

注意

EXPOSE alone does not make the app reachable from your browser.

示例

EXPOSE 3000

请求示例

Explain whether this exposed port is actually published.

Dockerfile

.dockerignore

.dockerignore

node_modules

含义

A file that excludes paths from the Docker build context.

使用场景

Use it to keep local dependencies, build output, secrets, and temporary files out of the image build.

示例

node_modules

请求示例

Check whether this .dockerignore excludes unsafe or unnecessary files.

Dockerfile

Build context

Build context

docker build -t my-app .

含义

The folder sent to Docker during image build.

使用场景

The final dot in docker build usually means the current folder is the build context.

注意

A large context slows builds and can accidentally include private files.

示例

docker build -t my-app .

请求示例

Explain what files are available to this Docker build.

Docker Compose

Docker Compose

Docker Compose

docker compose up

含义

A tool for running multiple Docker services from one YAML file.

使用场景

Use it for app plus database, cache, worker, or local development stacks.

示例

docker compose up

请求示例

Explain what services this compose file starts.

Docker Compose

services

services

services: web: db:

含义

Named app parts defined in a compose file.

使用场景

A web service might run the app while a db service runs PostgreSQL.

示例

services: web: db:

请求示例

List the services in this compose file and what each does.

Docker Compose

docker compose up

docker compose up

docker compose up -d

含义

Starts the services defined in a compose file.

使用场景

Use -d when you want services to run in the background.

示例

docker compose up -d

请求示例

Start the compose services and show which ones are running.

Docker Compose

docker compose down

docker compose down

docker compose down

含义

Stops and removes containers created by compose.

使用场景

Use it when you are done with a local development stack.

注意

Named volumes usually remain unless you explicitly remove volumes.

示例

docker compose down

请求示例

Stop this compose stack without deleting persistent data.

命令

docker build

docker build

docker build -t my-app .

含义

Builds a Docker image from a Dockerfile and context.

使用场景

Use it after writing a Dockerfile or changing app dependencies.

示例

docker build -t my-app .

请求示例

Build this Docker image and summarize any build errors.

命令

docker run

docker run

docker run --name my-app -p 3000:3000 my-app

含义

Creates and starts a container from an image.

使用场景

Use it when you want to start one container directly without compose.

示例

docker run --name my-app -p 3000:3000 my-app

请求示例

Run this image and explain the browser URL.

命令

docker ps

docker ps

docker ps

含义

Lists running containers.

使用场景

Use docker ps -a when you also want stopped containers.

示例

docker ps

请求示例

Show running containers and their published ports.

命令

docker stop

docker stop

docker stop my-app

含义

Stops a running container.

使用场景

Use it before removing a container or freeing a port.

示例

docker stop my-app

请求示例

Stop the container using port 3000.

命令

docker logs

docker logs

docker logs my-app

含义

Prints logs from a container.

使用场景

Use it when a container exits, crashes, or the app does not respond.

示例

docker logs my-app

请求示例

Read this container's logs and find the first error.

命令

docker exec

docker exec

docker exec -it my-app sh

含义

Runs a command inside an already running container.

使用场景

Use it to inspect files, environment variables, or installed tools inside a container.

注意

Changes made manually inside a container can disappear when the container is recreated.

示例

docker exec -it my-app sh

请求示例

Open a shell in this container and check its environment variables.

端口与网络

ports

ports

3000:3000

含义

Maps a port on your machine to a port inside the container.

使用场景

Use it so a browser can reach a web app running inside a container.

注意

The left side is the host port, and the right side is the container port.

示例

3000:3000

请求示例

Explain which URL I should open for this ports setting.

端口与网络

localhost in Docker

localhost in Docker

host.docker.internal

含义

localhost can mean the container itself, not your host machine, when code runs inside Docker.

使用场景

Use service names in compose networks, or host.docker.internal when a container must reach the host machine.

示例

host.docker.internal

请求示例

Explain why localhost does not reach the database from this container.

文件与数据

Volume

Volume

db-data:/var/lib/postgresql/data

含义

Docker-managed storage that can persist data outside a container's lifecycle.

使用场景

Use volumes for database data or other files that should survive container recreation.

注意

Removing volumes can delete persistent data.

示例

db-data:/var/lib/postgresql/data

请求示例

Tell me which compose volumes store persistent data.

文件与数据

Bind mount

Bind mount

./src:/app/src

含义

Connects a host folder directly into a container path.

使用场景

Use it during development so code edits on the host appear inside the container.

注意

A bind mount can hide files that were copied into the image at the same path.

示例

./src:/app/src

请求示例

Explain whether this volume is a named volume or a bind mount.

文件与数据

environment

environment

DATABASE_URL=postgres://db:5432/app

含义

Configuration values passed into a container.

使用场景

Use environment variables for database URLs, ports, modes, feature flags, and runtime settings.

注意

Do not bake secrets into public images or commit real secret values.

示例

DATABASE_URL=postgres://db:5432/app

请求示例

Check which environment variables this container needs.

故障排查

port is already allocated

port is already allocated

Bind for 0.0.0.0:3000 failed: port is already allocated

含义

Docker cannot publish a host port because another process or container is already using it.

使用场景

Find the process or container using the port, then stop it or choose a different host port.

示例

Bind for 0.0.0.0:3000 failed: port is already allocated

请求示例

Find what is using this Docker port and suggest a safe fix.

故障排查

container name is already in use

container name is already in use

Conflict. The container name "/my-app" is already in use

含义

A container with the same name already exists.

使用场景

List existing containers, then reuse, remove, or rename the old container.

示例

Conflict. The container name "/my-app" is already in use

请求示例

Resolve this container name conflict without deleting data unexpectedly.

故障排查

Build cache

Build cache

docker build --no-cache -t my-app .

含义

Docker can reuse previous build layers to make builds faster.

使用场景

If a change seems ignored, inspect the Dockerfile order or rebuild without cache as a diagnostic step.

注意

--no-cache can make builds slower, so use it intentionally.

示例

docker build --no-cache -t my-app .

请求示例

Explain whether Docker build cache could be hiding my change.

安全操作

docker system prune

docker system prune

docker system prune

含义

Removes unused Docker data such as stopped containers, unused networks, and dangling images.

使用场景

Use it when Docker uses too much disk space and you understand what will be removed.

注意

With extra flags, prune can delete images or volumes you still care about.

示例

docker system prune

请求示例

Before pruning Docker, show what would be removed and what data is safe.