Skip to content

Docker

Run ZIRI using Docker (without Docker Compose).

Pull the Image

docker pull ziri/proxy:latest

Run the Container

docker run -d \
  --name ziri-proxy \
  -p 3100:3100 \
  -v ziri-data:/data \
  -e CONFIG_DIR=/data \
  -e PORT=3100 \
  -e HOST=0.0.0.0 \
  ziri/proxy:latest

Viewing Logs

docker logs ziri-proxy

Follow logs:

docker logs -f ziri-proxy

Stopping the Container

docker stop ziri-proxy
docker rm ziri-proxy

Data Persistence

Data is stored in the Docker volume ziri-data. The volume persists even if the container is removed.

Accessing the UI

Once running, access the UI at http://localhost:3100.

Next Steps