Quote:
Originally Posted by coleman
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).