docker-compose.yaml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. version: '3'
  2. services:
  3. nginx-proxy:
  4. image: jwilder/nginx-proxy
  5. # My internet-facing load balancer (CloudFlare) sits on 80 and 443. Therefore,
  6. # I let it handle all HTTPS concerns.
  7. #
  8. # If this is internet-facing, enable SSL in nginx-proxy
  9. # and forward both 80 and 443 directly.
  10. ports:
  11. - "8080:80"
  12. volumes:
  13. - /var/run/docker.sock:/tmp/docker.sock:ro
  14. # Helps with stability of large uploads
  15. - ./conf.d/proxy_timeout.conf:/etc/nginx/conf.d/proxy_timeout.conf:ro
  16. - ./conf.d/real_ip.conf:/etc/nginx/conf.d/real_ip.conf:ro
  17. # Password-protect some subdomains
  18. - ./htpasswd:/etc/nginx/htpasswd
  19. # Certs for the top level domain & subdomains
  20. # - ${TOP_DOMAIN_CERT}:/etc/nginx/certs/jibby.org.crt
  21. # - ${TOP_DOMAIN_KEY}:/etc/nginx/certs/jibby.org.key
  22. # - ${WC_DOMAIN_CERT}:/etc/nginx/certs/shared.crt
  23. # - ${WC_DOMAIN_KEY}:/etc/nginx/certs/shared.key
  24. environment:
  25. - DEFAULT_HOST=jibby.org
  26. restart: always
  27. # An example of a static HTTP file hosting site
  28. camera:
  29. image: nginx
  30. volumes:
  31. - ${MEDIA_DIR}/Camera:/home/app:ro
  32. - ./conf.d/static.conf:/etc/nginx/sites-enabled/default
  33. - ./conf.d/static.conf:/etc/nginx/conf.d/default.conf
  34. environment:
  35. - VIRTUAL_HOST=camera.jibby.org
  36. - CERT_NAME=shared
  37. restart: always
  38. postgres:
  39. image: postgres:10.5
  40. volumes:
  41. - ${CONTAINERS_DIR}/postgres/data:/var/lib/postgresql/data
  42. - ${CONTAINERS_DIR}/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
  43. environment:
  44. - POSTGRES_USER=${POSTGRES_USER}
  45. - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  46. restart: always
  47. jekyll:
  48. build: https://github.com/jibby0/docker-jekyll-webhook.git
  49. environment:
  50. - TZ=America/New_York
  51. - WEBHOOK_SECRET=${WEBHOOK_SECRET}
  52. - REPO=https://github.com/jibby0/blog.git
  53. - VIRTUAL_HOST=jibby.org
  54. - VIRTUAL_PORT=80
  55. restart: always
  56. volumes:
  57. - ${CONTAINERS_DIR}/jekyll/vendor_cache:/vendor
  58. nextcloud:
  59. image: nextcloud
  60. expose:
  61. - "80"
  62. links:
  63. - postgres
  64. volumes:
  65. - ${CONTAINERS_DIR}/nextcloud:/var/www/html
  66. environment:
  67. - VIRTUAL_HOST=nextcloud.jibby.org
  68. - VIRTUAL_PORT=80
  69. - CERT_NAME=shared
  70. restart: always
  71. gogs:
  72. image: gogs/gogs
  73. expose:
  74. - "3000"
  75. volumes:
  76. - ${CONTAINERS_DIR}/gogs:/data
  77. # NOTE: My gogs instance isn't happy with postgres. For now, it's a small server
  78. # and sqlite is fine, but I should fix this eventually.
  79. #links:
  80. # - postgres
  81. environment:
  82. - VIRTUAL_HOST=gogs.jibby.org
  83. - VIRTUAL_PORT=3000
  84. - CERT_NAME=shared
  85. restart: always
  86. matrix:
  87. image: matrixdotorg/synapse
  88. expose:
  89. - "8008"
  90. links:
  91. - postgres
  92. environment:
  93. # NOTE: These don't directly configure anything anymore.
  94. # They can be used with `migrate_config` to build
  95. # homeserver.yaml
  96. # - SYNAPSE_SERVER_NAME=matrix.jibby.org
  97. # - SYNAPSE_REPORT_STATS=no
  98. # - SYNAPSE_NO_TLS=true
  99. # - SYNAPSE_ENABLE_REGISTRATION=no
  100. # - SYNAPSE_LOG_LEVEL=INFO
  101. # - SYNAPSE_REGISTRATION_SHARED_SECRET=${POSTGRES_PASSWORD}
  102. # - POSTGRES_DB=synapse
  103. # - POSTGRES_HOST=postgres
  104. # - POSTGRES_USER=synapse
  105. # - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  106. - VIRTUAL_HOST=matrix.jibby.org
  107. - VIRTUAL_PROTO=http
  108. - VIRTUAL_PORT=8008
  109. volumes:
  110. - ${CONTAINERS_DIR}/matrix:/data
  111. restart: always
  112. keeweb:
  113. image: antelle/keeweb
  114. expose:
  115. - "443"
  116. environment:
  117. - VIRTUAL_HOST=keeweb.jibby.org
  118. - VIRTUAL_PROTO=https
  119. - VIRTUAL_PORT=443
  120. - CERT_NAME=shared
  121. restart: always
  122. selfoss:
  123. image: hardware/selfoss
  124. expose:
  125. - "8888"
  126. links:
  127. - postgres
  128. volumes:
  129. - ${CONTAINERS_DIR}/selfoss:/selfoss/data
  130. environment:
  131. - CRON_PERIOD=5m
  132. - VIRTUAL_HOST=selfoss.jibby.org
  133. - VIRTUAL_PORT=8888
  134. - CERT_NAME=shared
  135. restart: always
  136. jellyfin:
  137. image: jellyfin/jellyfin
  138. expose:
  139. - "8096"
  140. volumes:
  141. - ${CONTAINERS_DIR}/jellyfin:/config
  142. - ${MEDIA_DIR}:/media
  143. environment:
  144. - VIRTUAL_HOST=jellyfin.jibby.org
  145. - VIRTUAL_PORT=8096
  146. - CERT_NAME=shared
  147. restart: always
  148. # Currently unused container configs:
  149. # plex:
  150. # image: plexinc/pms-docker
  151. # expose:
  152. # - "32400"
  153. # volumes:
  154. # - ${CONTAINERS_DIR}/plex:/config
  155. # - /tmp/plex:/transcode
  156. # - ${MEDIA_DIR}:/data
  157. # environment:
  158. # - PLEX_CLAIM="claim-pPM26k9y5p8hcbpnjzAq"
  159. # - VIRTUAL_HOST=plex.jossh.us,plex.jibby.org
  160. # - VIRTUAL_PORT=32400
  161. # - TZ="America/New_York"
  162. # restart: always
  163. # znc:
  164. # image: znc
  165. # expose:
  166. # - "6697"
  167. # ports:
  168. # - "6697:6697"
  169. # volumes:
  170. # - ${CONTAINERS_DIR}/znc:/home/znc/.znc
  171. # environment:
  172. # - VIRTUAL_HOST=znc.jossh.us
  173. # - LETSENCRYPT_HOST=znc.jossh.us
  174. # - VIRTUAL_PORT=6697
  175. # - VIRTUAL_PROTO=https
  176. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  177. # restart: always
  178. # gitlab:
  179. # image: gitlab/gitlab-ce
  180. # expose:
  181. # - "80"
  182. # - "22"
  183. # # Gitlab destroys databases when seeding them, and requires an admin user for seeding. So let's not link it to the running postgres instance.
  184. # environment:
  185. # - VIRTUAL_HOST=gitlab.jossh.us
  186. # - VIRTUAL_PORT=80
  187. # - LETSENCRYPT_HOST=gitlab.jossh.us
  188. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  189. # volumes:
  190. # - ${CONTAINERS_DIR}/gitlab/config:/etc/gitlab
  191. # - ${CONTAINERS_DIR}/gitlab/logs:/var/log/gitlab
  192. # - ${CONTAINERS_DIR}/gitlab/data:/var/opt/gitlab
  193. # restart: always
  194. # libresonic:
  195. # image: linuxserver/libresonic
  196. # expose:
  197. # - "4040"
  198. # volumes:
  199. # - ${CONTAINERS_DIR}/libresonic:/config
  200. # - ${MEDIA_DIR}/Music:/music
  201. # environment:
  202. # - VIRTUAL_HOST=libresonic.josh1147582.jumpingcrab.com,libresonic.jossh.us
  203. # - LETSENCRYPT_HOST=libresonic.josh1147582.jumpingcrab.com,libresonic.jossh.us
  204. # - VIRTUAL_PORT=4040
  205. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  206. # - TZ=America/New_York
  207. # restart: always
  208. # quassel:
  209. # image: linuxserver/quassel-core
  210. # expose:
  211. # - "4242"
  212. # links:
  213. # - postgres
  214. # volumes:
  215. # - ${CONTAINERS_DIR}/quassel:/config
  216. # - /etc/localtime:/etc/localtime:ro
  217. # environment:
  218. # - PGID=1000
  219. # - PUID=1000
  220. # - VIRTUAL_HOST=quassel.jossh.us,quassel.jibby.org
  221. # - VIRTUAL_PORT=4242
  222. # restart: always
  223. # quassel-webserver:
  224. # image: bodsch/docker-quassel-web
  225. # expose:
  226. # - "64080"
  227. # #ports:
  228. # # port- "8080:64080"
  229. # links:
  230. # - quassel
  231. # environment:
  232. # - QUASSEL_HOST=quassel
  233. # - QUASSEL_PORT=4242
  234. # - FORCE_DEFAULT=true
  235. # - WEBSERVER_MODE=http
  236. # - VIRTUAL_HOST=quassel-web.jossh.us,quassel-web.jibby.org
  237. # - VIRTUAL_PORT=64080
  238. # restart: always
  239. # netdata:
  240. # image: titpetric/netdata
  241. # privileged: true
  242. # hostname: cumulus-monitor
  243. # expose:
  244. # - "19999"
  245. # volumes:
  246. # - /proc:/host/proc:ro
  247. # - /sys:/host/sys:ro
  248. # - ${CONTAINERS_DIR}/netdata/health_alarm_notify.conf:/etc/netdata/health_alarm_notify.conf
  249. # - ${CONTAINERS_DIR}/netdata/conf.d/:/usr/lib/netdata/conf.d/
  250. # environment:
  251. # - VIRTUAL_HOST=netdata.jibby.org
  252. # - VIRTUAL_PORT=19999
  253. # - CERT_NAME=shared
  254. # - SMTP_TO=${LETSENCRYPT_EMAIL}
  255. # - SMTP_FROM=${SMTP_USER}
  256. # - SMTP_USER=${SMTP_USER}
  257. # - SMTP_PASS=${SMTP_PASS}
  258. # restart: always
  259. # wordpress:
  260. # image: wordpress
  261. # links:
  262. # - mariadb:mysql
  263. # volumes:
  264. # - ${CONTAINERS_DIR}/wordpress:/var/www/html
  265. # environment:
  266. # - WORDPRESS_DB_USER=${MARIADB_USER}
  267. # - WORDPRESS_DB_PASSWORD=${MARIADB_PASSWORD}
  268. # - VIRTUAL_HOST=jibby.org
  269. # - VIRTUAL_PORT=3000
  270. # restart: always
  271. # mariadb:
  272. # image: mariadb
  273. # volumes:
  274. # - ${CONTAINERS_DIR}/mariadb:/var/lib/mysql
  275. # environment:
  276. # # If mariadb is used for more than wordpress in the future, it'll need
  277. # # its own /docker-entrypoint-initdb.d entry. But for now, envrionment
  278. # # variables are fine.
  279. # - MYSQL_DATABASE=wordpress
  280. # - MYSQL_USER=${MARIADB_USER}
  281. # - MYSQL_PASSWORD=${MARIADB_PASSWORD}
  282. # - MYSQL_ROOT_PASSWORD=${MARIADB_PASSWORD}
  283. # restart: always
  284. ### Mastodon
  285. #
  286. # redis:
  287. # restart: always
  288. # image: redis:4.0-alpine
  289. # healthcheck:
  290. # test: ["CMD", "redis-cli", "ping"]
  291. # volumes:
  292. # - ${CONTAINERS_DIR}/redis:/data
  293. #
  294. # mastodon-web:
  295. # #build: ./docker-mastodon
  296. # image: tootsuite/mastodon
  297. # restart: always
  298. # env_file: .env.mastodon
  299. # environment:
  300. # - VIRTUAL_HOST=mastodon.jibby.org
  301. # - VIRTUAL_PORT=3000
  302. # #- VIRTUAL_PROTO=https
  303. # command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000 -b '0.0.0.0'"
  304. # healthcheck:
  305. # test: ["CMD-SHELL", "wget -q --spider --header 'x-forwarded-proto: https' --proxy off localhost:3000/api/v1/instance || exit 1"]
  306. # # ports:
  307. # # - "127.0.0.1:3000:3000"
  308. # expose:
  309. # - "3000"
  310. # depends_on:
  311. # - postgres
  312. # - redis
  313. # - es
  314. # volumes:
  315. # - ${CONTAINERS_DIR}/mastodon-web/public/system:/mastodon/public/system
  316. #
  317. # mastodon-streaming:
  318. # #build: ./docker-mastodon
  319. # image: tootsuite/mastodon
  320. # restart: always
  321. # env_file: .env.mastodon
  322. # command: yarn start
  323. # healthcheck:
  324. # test: ["CMD-SHELL", "wget -q --spider --header 'x-forwarded-proto: https' --proxy off localhost:4000/api/v1/streaming/health || exit 1"]
  325. # # ports:
  326. # # - "127.0.0.1:4000:4000"
  327. # expose:
  328. # - "4000"
  329. # depends_on:
  330. # - postgres
  331. # - redis
  332. #
  333. # mastodon-sidekiq:
  334. # #build: ./docker-mastodon
  335. # image: tootsuite/mastodon
  336. # restart: always
  337. # env_file: .env.mastodon
  338. # command: bundle exec sidekiq
  339. # depends_on:
  340. # - postgres
  341. # - redis
  342. # volumes:
  343. # - ${CONTAINERS_DIR}/mastodon-sidekiq/public/system:/mastodon/public/system