Zoraxy
Runs Zoraxy as a reverse proxy and management entry point with HTTP, HTTPS, and dashboard ports exposed. This template helps route traffic to self-hosted services and keeps proxy configuration in a persistent volume.
yaml
docker-compose.yml
services:
zoraxy:
image: zoraxydocker/zoraxy:v3.3.2
restart: unless-stopped
ports:
- ${ZORAXY_DASHBOARD_PORT}:8000
- "80:80"
- "443:443"
volumes:
- zoraxy_config:/opt/zoraxy/config
volumes:
zoraxy_config:
.ENV
.env example
ZORAXY_DASHBOARD_PORT=8000
deployment
Quick Start
- Create a working directory named after the service.
- Copy the compose file and generated `.env` into that directory.
- Review the variables and replace placeholders with real values.
- Run `docker compose up -d`.
mkdir zoraxy
cd zoraxy
# create docker-compose.yml
# create .env
docker compose up -d