Install with Docker
You can install Cirno with Docker via several simple steps.
-
Install Docker if you haven't already. You can follow the official guide here (opens in a new tab).
-
Pull the latest Cirno image from Docker Hub.
docker pull shroxdf/cirno:latest- 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.
| Path | Description |
|---|---|
/path/to/your/data | The directory where your media files are stored. |
/path/to/your/config | The directory where your configuration files are stored. |
/path/to/your/logs | The 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- Open your browser and go to
http://localhost:8000.