Advertisement
astalush

jigsaw docker

Nov 29th, 2019
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. root@srv1793:~# cat docker-compose.yml
  2. version: '2'
  3.  
  4. services:
  5. nginx-proxy:
  6. image: jwilder/nginx-proxy:latest
  7. container_name: nginx-proxy
  8. volumes:
  9. - /etc/nginx/certs
  10. - /etc/nginx/vhost.d
  11. - /usr/share/nginx/html
  12. - /var/run/docker.sock:/tmp/docker.sock:ro
  13. - /opt/nginx/htpasswd:/etc/nginx/htpasswd
  14. ports:
  15. - "80:80"
  16. - "443:443"
  17. restart: always
  18.  
  19. letsencrypt:
  20. image: jrcs/letsencrypt-nginx-proxy-companion:latest
  21. container_name: letsencrypt
  22. volumes:
  23. - /var/run/docker.sock:/var/run/docker.sock:ro
  24. volumes_from:
  25. - nginx-proxy
  26. restart: always
  27.  
  28. rutorrent:
  29. image: horjulf/rutorrent-autodl:latest
  30. container_name: rutorrent
  31. environment:
  32. - PUID=1000
  33. - PGID=1000
  34. - TZ=Europe/Bucharest
  35. - VIRTUAL_HOST=box.x265.club
  36. - VIRTUAL_PORT=80
  37. - LETSENCRYPT_HOST=box.x265.club
  38. volumes:
  39. - /opt/ruTorrent/config:/config
  40. - /home/downloads/incoming:/downloads
  41. ports:
  42. - "127.0.0.1:3111:80"
  43. - "5000:5000"
  44. - "51413:51413"
  45. - "6881:6881/udp"
  46. restart: always
  47.  
  48. plex:
  49. image: plexinc/pms-docker:public
  50. container_name: plex
  51. environment:
  52. - PLEX_UID=1000
  53. - PLEX_GID=1000
  54. - TZ=Europe/Bucharest
  55. - PLEX_CLAIM=claim-TH5ofeJVX13ZP4vUtMFa
  56. - CHANGE_CONFIG_DIR_OWNERSHIP=false
  57. - ADVERTISE_IP=https://plex.x265.club:443/
  58. - VIRTUAL_HOST=plex.x265.club
  59. - VIRTUAL_PORT=32400
  60. - LETSENCRYPT_HOST=plex.x265.club
  61. volumes:
  62. - /opt/Plex:/config
  63. - /dev/shm:/transcode
  64. - /home/downloads/incoming:/data
  65. ports:
  66. - "127.0.0.1:32400:32400/tcp"
  67. - "3005:3005/tcp"
  68. - "8324:8324/tcp"
  69. - "32469:32469/tcp"
  70. - "1900:1900/udp"
  71. - "32410:32410/udp"
  72. - "32412:32412/udp"
  73. - "32413:32413/udp"
  74. - "32414:32414/udp"
  75. restart: always
  76.  
  77. thelounge:
  78. image: linuxserver/thelounge
  79. container_name: thelounge
  80. environment:
  81. - PUID=1000
  82. - PGID=1000
  83. - TZ=Europe/London
  84. - VIRTUAL_HOST=irc.x265.club
  85. - VIRTUAL_PORT=9000
  86. - LETSENCRYPT_HOST=irc.x265.club
  87. volumes:
  88. - /opt/thelounge/config>:/config
  89. ports:
  90. - 9000:9000
  91. restart: always
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement