# Docker information

To load the Velocity MTA Docker image, run the following command in the velocity-install directory&#x20;

```
./load_images.sh
```

To verify you have the Velocity MTA Docker image loaded, run the following command:

```
docker images
```

To restart Velocity MTA:

`./restart.sh`

To view running Docker containers and their resource utilization, run the following command:

```
docker stats --no-stream
```

To view Docker logs since Velocity MTA was last started run:

`docker logs edcom-velocity`

Persistent Velocity MTA system logging is stored in:

```
velocity-install/logs/velocity.log 
```

To shut down Velocity MTA:

```
docker compose down
```

As a nuclear option troubleshooting step, you can destroy all of your Docker images and containers in one go to start over with the following command:&#x20;

{% code overflow="wrap" %}

```
docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q)
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.emaildelivery.com/docs/velocity-mta-continuing-education/docker-information.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
