CptnAgua

Docker Compose

Jun 28th, 2021 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. version: '3.4'
  2. services:
  3. calibre:
  4. image: ghcr.io/linuxserver/calibre
  5. container_name: calibre
  6. environment:
  7. - PUID=${PUID}
  8. - PGID=${PGID}
  9. - TZ=${TZ}
  10. volumes:
  11. - /fff/calibre-server:/config
  12. - /hhh/torrents:/torrents
  13. ports:
  14. - 9080:8080
  15. - 9081:8081
  16. restart: unless-stopped
  17. profiles:
  18. - calibre
  19.  
  20. swag:
  21. image: ghcr.io/linuxserver/swag
  22. container_name: swag
  23. cap_add:
  24. - NET_ADMIN
  25. environment:
  26. - PUID=${PUID}
  27. - PGID=${PGID}
  28. - TZ=${TZ}
  29. - URL=xxx.xxx.xxx
  30. - VALIDATION=http
  31. - EMAIL=zzz@zzz.zzz #optional
  32. - EXTRA_DOMAINS=yyy.yyy.yyy
  33. - SUBFOLDER=/calibre/
  34. volumes:
  35. - ${DOCKERCONFDIR}/swag:/config
  36. ports:
  37. - 443:443
  38. - 80:80 #optional
  39. restart: unless-stopped
Add Comment
Please, Sign In to add comment