Motto2508

Untitled

Mar 28th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.20 KB | None | 0 0
  1. version: "3.8"
  2. #networks:
  3. # my_network:
  4. # external: true
  5. services:
  6. # plex:
  7. # container_name: plex
  8. # image: linuxserver/plex
  9. # ports:
  10. # - 32400:32400
  11. # environment:
  12. # - VERSION=docker
  13. # - PLEX_CLAIM= #optional
  14. # - PLEX_UID=1000
  15. # - PLEX_GID=1000
  16. # - TZ=Asia/Kolkata
  17. # volumes:
  18. # - /root/docker/plex:/config
  19. # - /root/docker/plex/transcode:/transcode
  20. # - /home/ubuntu/YeetersShows:/media/gdrive/
  21. # - /home/ubuntu/Onedrive/Plex:/media/onedrive/
  22. # restart: unless-stopped
  23. # networks:
  24. # my_network:
  25. # ipv4_address: 172.16.2.6
  26.  
  27.  
  28. qbittorrent:
  29. image: lscr.io/linuxserver/qbittorrent:latest
  30. container_name: qbittorrent
  31. environment:
  32. - PUID=1000
  33. - PGID=1000
  34. - TZ=Etc/UTC
  35. - WEBUI_PORT=8080
  36. - TORRENTING_PORT=6881
  37. volumes:
  38. - /home/subhamsoni574/docker/qbittorrent:/config
  39. - /data/torrents:/data/torrents
  40. ports:
  41. - 8080:8080
  42. - 6881:6881
  43. - 6881:6881/udp
  44. restart: unless-stopped
  45.  
  46. jackett:
  47. image: lscr.io/linuxserver/jackett:latest
  48. container_name: jackett
  49. environment:
  50. - PUID=1000
  51. - PGID=1000
  52. - TZ=Etc/UTC
  53. - AUTO_UPDATE=true #optional
  54. - RUN_OPTS= #optional
  55. volumes:
  56. - /home/subhamsoni574/docker/jackett:/config
  57. - /data/torrents:/data/torrents
  58. ports:
  59. - 9117:9117
  60. restart: unless-stopped
  61.  
  62. ################################################################
  63.  
  64. # portainer:
  65. # image: portainer/portainer-ce:latest
  66. # container_name: portainer
  67. # networks:
  68. # my_network:
  69. # ipv4_address: 172.16.2.8
  70. # restart: unless-stopped
  71. # volumes:
  72. # - /var/run/docker.sock:/var/run/docker.sock
  73. # ports:
  74. # - '9000:9000'
  75.  
  76. ################################################################
  77.  
  78. # jellyfin:
  79. # image: jellyfin/jellyfin:latest
  80. # container_name: jellyfin
  81. # networks:
  82. # my_network:
  83. # ipv4_address: 172.16.2.3
  84. # volumes:
  85. # - /root/docker/jellyfin:/config
  86. # - /root/docker/jellyfin/cache:/cache
  87. # - /home/ubuntu/YeetersShows:/media/gdrive/
  88. # - /home/ubuntu/Onedrive/Plex:/media/onedrive/
  89. # ports:
  90. # - '8096:8096/tcp'
  91. # restart: unless-stopped
  92. # Optional - alternative address used for autodiscovery
  93. # environment:
  94. # - JELLYFIN_PublishedServerUrl=http://example.com
  95. # Optional - may be necessary for docker healthcheck to pass if running in host network mode
  96. # extra_hosts:
  97. # - "host.docker.internal:host-gateway"
  98.  
  99. ################################################################
  100.  
  101. homepage:
  102. image: ghcr.io/benphelps/homepage:latest
  103. container_name: homepage
  104. ports:
  105. - 3000:3000
  106. volumes:
  107. - /home/subhamsoni574/docker/homepage:/app/config # Make sure your local config directory exists
  108. - /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
  109. restart: unless-stopped
  110. # networks:
  111. # my_network:
  112. # ipv4_address: 172.16.2.4
  113.  
  114. ################################################################
  115.  
  116. overseerr:
  117. image: sctx/overseerr:latest
  118. container_name: overseerr
  119. environment:
  120. - LOG_LEVEL=debug
  121. - PORT=5055 #optional
  122. ports:
  123. - 5055:5055
  124. volumes:
  125. - /home/subhamsoni574/docker/overseerr:/config
  126. restart: unless-stopped
  127. # networks:
  128. # my_network:
  129. # ipv4_address: 172.16.2.5
  130.  
  131. ################################################################
  132.  
  133. nginx:
  134. image: jc21/nginx-proxy-manager:latest
  135. container_name: nginx
  136. restart: unless-stopped
  137. ports:
  138. # These ports are in format <host-port>:<container-port>
  139. - '80:80' # Public HTTP Port
  140. - '443:443' # Public HTTPS Port
  141. - '81:81' # Admin Web Port
  142. # Add any other Stream port you want to expose
  143. # - '21:21' # FTP
  144.  
  145. # Uncomment the next line if you uncomment anything in the section
  146. # environment:
  147. # Uncomment this if you want to change the location of
  148. # the SQLite DB file within the container
  149. # DB_SQLITE_FILE: "/data/database.sqlite"
  150.  
  151. # Uncomment this if IPv6 is not enabled on your host
  152. # DISABLE_IPV6: 'true'
  153. volumes:
  154. - /home/subhamsoni574/docker/nginx:/data
  155. - ./letsencrypt:/etc/letsencrypt
  156. # networks:
  157. # my_network:
  158. # ipv4_address: 172.16.2.11
  159. #################################################################
  160.  
  161. radarr:
  162. image: lscr.io/linuxserver/radarr:latest
  163. container_name: radarr
  164. environment:
  165. - PUID=1000
  166. - PGID=1000
  167. volumes:
  168. - /home/subhamsoni574/docker/radarr:/config
  169. # - /home/ubuntu/Onedrive/Plex:/media/onedrive/
  170. - /data:/data
  171. ports:
  172. - 7878:7878
  173. # networks:
  174. # my_network:
  175. # ipv4_address: 172.16.2.2
  176. restart: unless-stopped
  177.  
  178. ################################################################
  179.  
  180. sonarr:
  181. image: lscr.io/linuxserver/sonarr:latest
  182. container_name: sonarr
  183. environment:
  184. - PUID=1000
  185. - PGID=1000
  186. # - DOCKER_MODS=ghcr.io/themepark-dev/theme.park:sonarr
  187. # - TP_THEME = hotpink
  188. volumes:
  189. - /home/subhamsoni574/docker/sonarr:/config
  190. - /data:/data
  191. # - /home/ubuntu/Onedrive/Plex:/media/onedrive/
  192. ports:
  193. - 8989:8989
  194. restart: unless-stopped
  195.  
  196. ################################################################
  197.  
  198. # plextraktsync:
  199. # image: ghcr.io/taxel/plextraktsync:latest
  200. # command: sync
  201. # container_name: plextraktsync
  202. # restart: always
  203. # volumes:
  204. # - /root/docker/plextraktsync:/app/config
  205. # environment:
  206. # - PUID=1000
  207. # - PGID=1000
  208. # - TZ=Asia/Kolkata
  209.  
  210. ################################################################
  211.  
  212.  
  213. uptime-kuma:
  214. image: louislam/uptime-kuma:latest
  215. container_name: uptime-kuma
  216. volumes:
  217. - /home/subhamsoni574/docker/uptime-kuma:/app/data
  218. ports:
  219. - "3001:3001" # <Host Port>:<Container Port>
  220. restart: always
  221.  
  222.  
  223. ################################################################
  224.  
  225.  
  226. # lidarr:
  227. # image: lscr.io/linuxserver/lidarr:latest
  228. # container_name: lidarr
  229. # environment:
  230. # - PUID=1000
  231. # - PGID=1000
  232. # - TZ=Etc/UTC
  233. # volumes:
  234. # - /root/docker/lidarr:/config
  235. # - /home/ubuntu/Onedrive/Plex/music:/music #optional
  236. # ports:
  237. # - 8686:8686
  238. # restart: unless-stopped
  239.  
  240. ###########################################################
  241.  
  242. glances:
  243. container_name: glances
  244. image: nicolargo/glances:latest
  245. restart: always
  246. pid: host
  247. volumes:
  248. - /var/run/docker.sock:/var/run/docker.sock
  249. environment:
  250. - "GLANCES_OPT=-w"
  251. ports:
  252. - 61208:61208
  253. labels:
  254. - "traefik.port=61208"
  255. - "traefik.frontend.rule=Host:glances.docker.localhost"
  256.  
  257. #######################################################
  258.  
  259. organizr:
  260. image: organizr/organizr:latest
  261. container_name: organizr
  262. environment:
  263. - PUID=1000
  264. - PGID=1000
  265. - TZ=Asia/Kolkata
  266. volumes:
  267. - /home/subhamsoni574/docker/organizr:/config
  268. ports:
  269. - 9983:80
  270. restart: unless-stopped
  271.  
  272. ##########################################################
  273.  
  274. # wizarr:
  275. # container_name: wizarr
  276. # image: ghcr.io/wizarrrr/wizarr:latest
  277. # #user: 1000:1000 #Optional but recommended, sets the user uid that Wizarr will run with
  278. # ports:
  279. # - 5690:5690
  280. # volumes:
  281. # - /root/docker/wizarr/config:/data/database
  282. # environment:
  283. # - APP_URL=https://wizarr.shuthe.duckdns.org #URL at which you will access and share
  284. # - DISABLE_BUILTIN_AUTH=false #Set to true ONLY if you are using another auth provider (Authelia, Authentik, etc)
  285. # - TZ=Asia/Kolkata #Set your timezone here
  286.  
  287. #############################################################
  288.  
  289. # duckdns:
  290. # image: ghcr.io/linuxserver/duckdns:latest
  291. # container_name: duckdns
  292. # environment:
  293. # - PUID=1000 #optional
  294. # - PGID=1000 #optional
  295. # - TZ=Asia/Kolkata
  296. # - SUBDOMAINS=shutda,shuthe
  297. # - TOKEN=82e36755-391a-4743-b3b1-d2c2e0151c6b
  298. # - LOG_FILE=false #optional
  299. # volumes:
  300. # - /root/docker/duckdns/config:/config #optional
  301. # restart: unless-stopped
  302.  
  303. #################################################################
  304.  
  305. # couchdb:
  306. # image: couchdb
  307. # container_name: obsidian-livesync
  308. # user: 1000:1000
  309. # environment:
  310. # - COUCHDB_USER=Staging4570
  311. # - COUCHDB_PASSWORD=Spectrum$Strategic$Blouse5
  312. # volumes:
  313. # - ./data:/opt/couchdb/data
  314. # - ./local.ini:/opt/couchdb/etc/local.ini
  315. # ports:
  316. # - 5984:5984
  317. # restart: unless-stopped
  318.  
  319. ###############################################################
  320.  
  321. # plexautolanguages:
  322. # image: remirigal/plex-auto-languages:latest
  323. # container_name: PlexAutoLanguages
  324. # environment:
  325. # - TZ=Asia/Kolkata
  326. # - PLEX_URL=http://155.248.246.201:32400
  327. # - PLEX_TOKEN=BKzBsUyszEYW3-2nTnX3
  328. # volumes:
  329. # # make sure you have a file named 'config.yaml' in the 'config' dir
  330. # - /root/docker/plexautolanguages/config:/config
  331. # restart: unless-stopped
Add Comment
Please, Sign In to add comment