> For the complete documentation index, see [llms.txt](https://notebook.iuriioapps.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notebook.iuriioapps.com/containers-and-microservices/docker/images.md).

# Images

## Useful commands

Build image from [Dockerfile](/containers-and-microservices/docker/dockerfile.md)

```
docker image build -t <repository-name/image-name:tag-name>
```

Pull image from registry:

```
docker image pull <repository-name/image-name:tag-name>
```

Push image to registry:

```
docker image push <repository-name/image-name:tag-name>
```
