docker-compose.yml.bak 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. version: "2.1"
  2. services:
  3. calibre-web:
  4. image: ghcr.io/linuxserver/calibre-web:0.6.12-ls128
  5. container_name: ${CALIBRE_WEB_NAME}
  6. environment:
  7. - PUID=1000
  8. - PGID=1000
  9. - TZ=Asia/Hong_Kong
  10. - DOCKER_MODS=linuxserver/calibre-web:calibre
  11. - OAUTHLIB_RELAX_TOKEN_SCOPE=${OAUTHLIB_RELAX_TOKEN_SCOPE}
  12. - OAUTHLIB_INSECURE_TRANSPORT=${OAUTHLIB_INSECURE_TRANSPORT}
  13. volumes:
  14. - ${CALIBRE_ROOT}/calibre-web/config:/config
  15. - ${CALIBRE_ROOT}/books:/books
  16. ports:
  17. - 8783:8083
  18. restart: "no"
  19. calibre:
  20. image: ghcr.io/linuxserver/calibre:v5.24.0-ls123
  21. container_name: ${CALIBRE_NAME}
  22. environment:
  23. - PUID=1000
  24. - PGID=1000
  25. - TZ=Asia/Hong_Kong
  26. - GUAC_USER=calibre# # the user id is calibre# with a pound sign at the end
  27. - GUAC_PASS=5f4dcc3b5aa765d61d8327deb882cf99 # password=password
  28. # xorg abc / password: abc
  29. - UMASK_SET=022 #optional
  30. - CLI_ARGS= #optional
  31. volumes:
  32. - ${CALIBRE_ROOT}/books:/config
  33. ports:
  34. - 8780:8080
  35. - 8781:8081
  36. restart: "no"