Docker
Docker
Run ZIRI using Docker (without Docker Compose).
Pull the Image
docker pull ziri/proxy:latestRun 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:latestViewing Logs
docker logs ziri-proxyFollow logs:
docker logs -f ziri-proxyStopping the Container
docker stop ziri-proxy
docker rm ziri-proxyData 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.