View Single Post
Old 02-05-2019, 11:17 PM   #11
haertig
Wizard
haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.haertig ought to be getting tired of karma fortunes by now.
 
Posts: 1,899
Karma: 31522252
Join Date: Sep 2017
Device: PW3, Fire HD8 Gen7, Moto G7, Sansa Clip v2, Ruizu X26
Quote:
Originally Posted by coleman View Post
I can always stop the docker instance running calibre-web, while I do stuff in calibre, if I get that worired about it.
Just set up your Docker container like this (excerpt from docker-compose.yml). Your Calibre library will be mounted read-only into your Docker container, thus safe.

Code:
  calibre-web:
    image: linuxserver/calibre-web
    container_name: calibre-web
    volumes:
      - /var/opt/docker/calibre-web/config:/config
      - /var/opt/calibre:/books:ro
    environment:
      - PUID=1002
      - PGID=1001
    networks:
      - frontend
    restart: unless-stopped
If you're not using docker-compose, then you can do the same thing for a standalone container with docker-create (the syntax is slightly different in this case).

Last edited by haertig; 02-05-2019 at 11:19 PM.
haertig is offline   Reply With Quote