docker run -d -p 0.0.0.0:5001:5000 -v /mnt/user/system/appdata/chimera:/db -v /mnt/user/media/downloads:/downloads -e CONFIGURE=TRUE --name chimera miguel1993/docker-chimera
docker exec -it chimera /bin/bash
python3.7 main.py
browse to http://IP:5001/configure
docker stop chimera ; docker rm chimera ; docker run -d -p 0.0.0.0:5001:5000 -v /mnt/user/system/appdata/chimera:/db -v /mnt/user/media/downloads:/downloads -e CONFIGURE=TRUE --name chimera miguel1993/docker-chimera
docker stop chimera ; docker rm chimera ; docker run -d -p 0.0.0.0:5001:5000 -v /mnt/user/system/appdata/chimera:/db -v /mnt/user/media/downloads:/downloads -e CONFIGURE=TRUE --name chimera miguel1993/docker-chimera
docker exec -it chimera /bin/bash
python3.7 main.py
setup chimera
browse to http://IP:5001/configure
Parameter | Function |
---|---|
-p 0.0.0.0:5001:5000 |
Modify left side port, chimera runs on port 5000 |
-v /mnt/user/system/appdata/chimera:/db |
Location to store chimera database. |
-v /mnt/user/media/downloads:/downloads |
Mapped location for downloads |
-e CONFIGURE=TRUE |
Enable configure mode, this requires exec'ing into the container. This also disables the API |
--name chimera |
Name the container |