> ## Documentation Index
> Fetch the complete documentation index at: https://docs.atum.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Volume mounts

> Mount profile and plugin configuration into the settler agent container.

The container reads its profile and plugin configuration from mounted volumes.

<Note>
  Celo and Tron are used here as an example. Atum supports many additional EVM networks, plus Solana, with more chains on the way — see [Supported mainnets](/settle-payments/supported-mainnets).
</Note>

| Host path              | Container path          | Purpose                     |
| ---------------------- | ----------------------- | --------------------------- |
| `config/profiles/`     | `/app/config/profiles`  | Profile configuration files |
| `config/plugins/evm/`  | `/app/src/plugins/evm`  | EVM plugin configuration    |
| `config/plugins/tron/` | `/app/src/plugins/tron` | Tron plugin configuration   |

Example Docker Compose:

```yaml theme={null}
volumes:
  - ./settler-config/profiles:/app/config/profiles
  - ./settler-config/plugins/evm:/app/src/plugins/evm
  - ./settler-config/plugins/tron:/app/src/plugins/tron
```
