SignBox Optimizer exposes the following ports:
| Service | Port | Purpose |
|---|---|---|
| Optimizer | 16100 | API requests from client applications |
| Optimizer | 5678 | Internal communication |
| Redis | 6379 | In-memory data store |
Port 16100 is the main entry point for signing requests.
To use a different host port, update the port mapping in the docker-compose.yml file. The ports section maps host ports to container ports in the format host_port:container_port.
Example: to expose the API on host port 16100, ensure the following line exists:
ports:
- "16100:16100"
- "5678:5678"
Change the left value (e.g. "18000:16100") to bind a different host port to the container's port 16100.