Docker¶
Run Trident as a Docker container from the official Trident Container Registry.
Pull the Image¶
For a specific version:
Run¶
Basic usage with default configuration:
With a custom configuration file:
docker run -d \
--name trident \
-p 8120:8120 \
-v /path/to/config.toml:/etc/trident/config.toml:ro \
docker.trident-cache.com/trident:latest
Docker Compose¶
services:
trident:
image: docker.trident-cache.com/trident:latest
ports:
- "8120:8120"
volumes:
- ./config.toml:/etc/trident/config.toml:ro
restart: unless-stopped
Exposed Ports¶
| Port | Description |
|---|---|
8120 |
HTTP listener |
Next Steps¶
- Configuration — customize your
config.toml