Quickstart
Quick install using Docker
Docker Hub images are available for quick installation and deploy.
Install via Docker Compose
Install via Docker
docker run \
--name clu \
--restart always \
-p 5577:5577 \
-v /Users/phillipduncan/Documents/docker/clu:/config \
-v /Users/phillipduncan/Documents/GitHub/comic-utils/bak:/data \
-v /Users/phillipduncan/Documents/GitHub/comic-utils/files:/downloads \
-e FLASK_ENV=development \
-e MONITOR=no \
allaboutduncan/comic-utils-web:latest
Parameters
text
Parameter
Function
-p 5577:5577
The port exposed by the app for the web interface.
-v /docker/clu:/config
Location for your CLU directory on a local disk. Enables local storage of the config.ini
which preservers settings during updates. Must be mapped to /config
-v /User/comics:/data
Location of your library to manage. Must be mapped to /data
-v /User/downloads:/downloads
Optional folder to configure if MONITOR is enabled (see below)
-e FLASK_ENV=development
-e MONITOR=no
If set to yes
folder monitoring will be enabled
Paths
Last updated