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.