Overview
The de-facto container standard. Combined with the Agent, 'works on my machine' becomes a reproducible Dockerfile fast.
Features
- build / run / push / pull
- Compose for multi-service orchestration
- Volume and network management
- Image layer analysis
- Multi-arch builds
Common commands
A few common invocations — the Agent runs them as you in your terminal
$ docker build -t app .Build an image from the current directory
$ docker run -p 3000:3000 appRun the container with a port map
$ docker compose up -dStart a multi-service stack in the background