Install with Docker

Install with Docker

You can install Cirno with Docker via several simple steps.

  1. Install Docker if you haven't already. You can follow the official guide here (opens in a new tab).

  2. Pull the latest Cirno image from Docker Hub.

docker pull shroxdf/cirno:latest
  1. Run the container.

Make sure to replace /path/to/your/data and /path/to/your/config with the actual paths to your data and config directories.

PathDescription
/path/to/your/dataThe directory where your media files are stored.
/path/to/your/configThe directory where your configuration files are stored.
/path/to/your/logsThe directory where your logs are stored.
docker run -d \
  --network bridge \
  -p 8000:8000 \
  -v /path/to/your/data:/app/data \
  -v /path/to/your/config:/app/config \
  -v /path/to/your/logs:/app/logs \
  --name cirno_container \
  shroxdf/cirno:latest
  1. Open your browser and go to http://localhost:8000.