| 123456789101112131415161718192021222324252627282930313233343536 |
- version: "2.1"
- services:
- calibre-web:
- image: ghcr.io/linuxserver/calibre-web
- container_name: ${CALIBRE_WEB_NAME}
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=Asia/Hong_Kong
- - DOCKER_MODS=linuxserver/calibre-web:calibre
- - OAUTHLIB_RELAX_TOKEN_SCOPE=${OAUTHLIB_RELAX_TOKEN_SCOPE}
- - OAUTHLIB_INSECURE_TRANSPORT=${OAUTHLIB_INSECURE_TRANSPORT}
- volumes:
- - ${CALIBRE_ROOT}/calibre-web/config:/config
- - ${CALIBRE_ROOT}/books:/books
- ports:
- - 8783:8083
- restart: "no"
- calibre:
- image: ghcr.io/linuxserver/calibre
- container_name: ${CALIBRE_NAME}
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=Asia/Hong_Kong
- - GUAC_USER=calibre# # the user id is calibre# with a pound sign at the end
- - GUAC_PASS=5f4dcc3b5aa765d61d8327deb882cf99 # password=password
- - UMASK_SET=022 #optional
- - CLI_ARGS= #optional
- volumes:
- - ${CALIBRE_ROOT}/books:/config
- ports:
- - 8780:8080
- - 8781:8081
- restart: "no"
|