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

  1. Create a working directory named after the service.
  2. Copy the compose file and generated `.env` into that directory.
  3. Review the variables and replace placeholders with real values.
  4. Run `docker compose up -d`.
mkdir zoraxy
cd zoraxy
# create docker-compose.yml
# create .env
docker compose up -d