Add calibre/docker-compose.yaml
This commit is contained in:
@@ -0,0 +1,38 @@
|
|||||||
|
version: "2.8"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
config:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: nfs
|
||||||
|
o: "addr=192.168.1.4,rw,nolock,soft"
|
||||||
|
device: ":/srv/books/calibre"
|
||||||
|
import:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: nfs
|
||||||
|
o: "addr=192.168.1.4,rw,nolock,soft"
|
||||||
|
device: ":/srv/books/calibre-import"
|
||||||
|
|
||||||
|
services:
|
||||||
|
calibre:
|
||||||
|
image: lscr.io/linuxserver/calibre:latest
|
||||||
|
container_name: calibre
|
||||||
|
security_opt:
|
||||||
|
- seccomp:unconfined #optional
|
||||||
|
#security-opt:
|
||||||
|
# - seccomp:unconfined
|
||||||
|
environment:
|
||||||
|
- PUID=1024
|
||||||
|
- PGID=1024
|
||||||
|
- TZ=America/New_York
|
||||||
|
- PASSWORD= #optional
|
||||||
|
- CLI_ARGS= #optional
|
||||||
|
volumes:
|
||||||
|
- config:/config
|
||||||
|
- import:/calibre-import
|
||||||
|
ports:
|
||||||
|
- 8090:8080
|
||||||
|
- 8091:8081
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
Reference in New Issue
Block a user