docker-compose.yaml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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. mariadb:
  48. image: mariadb
  49. volumes:
  50. - ${CONTAINERS_DIR}/mariadb:/var/lib/mysql
  51. environment:
  52. # If mariadb is used for more than wordpress in the future, it'll need
  53. # its own /docker-entrypoint-initdb.d entry. But for now, envrionment
  54. # variables are fine.
  55. - MYSQL_DATABASE=wordpress
  56. - MYSQL_USER=${MARIADB_USER}
  57. - MYSQL_PASSWORD=${MARIADB_PASSWORD}
  58. - MYSQL_ROOT_PASSWORD=${MARIADB_PASSWORD}
  59. restart: always
  60. wordpress:
  61. image: wordpress
  62. links:
  63. - mariadb:mysql
  64. volumes:
  65. - ${CONTAINERS_DIR}/wordpress:/var/www/html
  66. environment:
  67. - WORDPRESS_DB_USER=${MARIADB_USER}
  68. - WORDPRESS_DB_PASSWORD=${MARIADB_PASSWORD}
  69. - VIRTUAL_HOST=jibby.org
  70. - VIRTUAL_PORT=3000
  71. restart: always
  72. nextcloud:
  73. image: nextcloud
  74. expose:
  75. - "80"
  76. links:
  77. - postgres
  78. volumes:
  79. - ${CONTAINERS_DIR}/nextcloud:/var/www/html
  80. environment:
  81. - VIRTUAL_HOST=nextcloud.jibby.org
  82. - VIRTUAL_PORT=80
  83. - CERT_NAME=shared
  84. restart: always
  85. gogs:
  86. image: gogs/gogs
  87. expose:
  88. - "3000"
  89. volumes:
  90. - ${CONTAINERS_DIR}/gogs:/data
  91. #links:
  92. # - postgres
  93. environment:
  94. - VIRTUAL_HOST=gogs.jibby.org
  95. - VIRTUAL_PORT=3000
  96. - CERT_NAME=shared
  97. restart: always
  98. matrix:
  99. image: matrixdotorg/synapse
  100. expose:
  101. - "8008"
  102. links:
  103. - postgres
  104. environment:
  105. - SYNAPSE_SERVER_NAME=matrix.jibby.org
  106. - SYNAPSE_REPORT_STATS=no
  107. - SYNAPSE_NO_TLS=true
  108. - SYNAPSE_ENABLE_REGISTRATION=no
  109. - SYNAPSE_LOG_LEVEL=INFO
  110. - SYNAPSE_REGISTRATION_SHARED_SECRET=${POSTGRES_PASSWORD}
  111. - POSTGRES_DB=synapse
  112. - POSTGRES_HOST=postgres
  113. - POSTGRES_USER=synapse
  114. - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  115. - VIRTUAL_HOST=matrix.jibby.org
  116. - VIRTUAL_PROTO=http
  117. - VIRTUAL_PORT=8008
  118. volumes:
  119. - ${CONTAINERS_DIR}/matrix:/data
  120. restart: always
  121. keeweb:
  122. image: antelle/keeweb
  123. expose:
  124. - "443"
  125. environment:
  126. - VIRTUAL_HOST=keeweb.jibby.org
  127. - VIRTUAL_PROTO=https
  128. - VIRTUAL_PORT=443
  129. - CERT_NAME=shared
  130. restart: always
  131. netdata:
  132. image: titpetric/netdata
  133. privileged: true
  134. hostname: cumulus-monitor
  135. expose:
  136. - "19999"
  137. volumes:
  138. - /proc:/host/proc:ro
  139. - /sys:/host/sys:ro
  140. - ${CONTAINERS_DIR}/netdata/health_alarm_notify.conf:/etc/netdata/health_alarm_notify.conf
  141. - ${CONTAINERS_DIR}/netdata/conf.d/:/usr/lib/netdata/conf.d/
  142. environment:
  143. - VIRTUAL_HOST=netdata.jibby.org
  144. - VIRTUAL_PORT=19999
  145. - CERT_NAME=shared
  146. - SMTP_TO=${LETSENCRYPT_EMAIL}
  147. - SMTP_FROM=${SMTP_USER}
  148. - SMTP_USER=${SMTP_USER}
  149. - SMTP_PASS=${SMTP_PASS}
  150. restart: always
  151. selfoss:
  152. image: hardware/selfoss
  153. expose:
  154. - "8888"
  155. links:
  156. - postgres
  157. volumes:
  158. - ${CONTAINERS_DIR}/selfoss:/selfoss/data
  159. environment:
  160. - VIRTUAL_HOST=selfoss.jibby.org
  161. - VIRTUAL_PORT=8888
  162. - CERT_NAME=shared
  163. restart: always
  164. jellyfin:
  165. image: jellyfin/jellyfin
  166. expose:
  167. - "8096"
  168. volumes:
  169. - ${CONTAINERS_DIR}/jellyfin:/config
  170. - ${MEDIA_DIR}:/media
  171. environment:
  172. - VIRTUAL_HOST=jellyfin.jibby.org
  173. - VIRTUAL_PORT=8096
  174. - CERT_NAME=shared
  175. restart: always
  176. # Currently unused container configs:
  177. # plex:
  178. # image: plexinc/pms-docker
  179. # expose:
  180. # - "32400"
  181. # volumes:
  182. # - ${CONTAINERS_DIR}/plex:/config
  183. # - /tmp/plex:/transcode
  184. # - ${MEDIA_DIR}:/data
  185. # environment:
  186. # - PLEX_CLAIM="claim-pPM26k9y5p8hcbpnjzAq"
  187. # - VIRTUAL_HOST=plex.jossh.us,plex.jibby.org
  188. # - VIRTUAL_PORT=32400
  189. # - TZ="America/New_York"
  190. # restart: always
  191. # znc:
  192. # image: znc
  193. # expose:
  194. # - "6697"
  195. # ports:
  196. # - "6697:6697"
  197. # volumes:
  198. # - ${CONTAINERS_DIR}/znc:/home/znc/.znc
  199. # environment:
  200. # - VIRTUAL_HOST=znc.jossh.us
  201. # - LETSENCRYPT_HOST=znc.jossh.us
  202. # - VIRTUAL_PORT=6697
  203. # - VIRTUAL_PROTO=https
  204. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  205. # restart: always
  206. # gitlab:
  207. # image: gitlab/gitlab-ce
  208. # expose:
  209. # - "80"
  210. # - "22"
  211. # # Gitlab destroys databases when seeding them, and requires an admin user for seeding. So let's not link it to the running postgres instance.
  212. # environment:
  213. # - VIRTUAL_HOST=gitlab.jossh.us
  214. # - VIRTUAL_PORT=80
  215. # - LETSENCRYPT_HOST=gitlab.jossh.us
  216. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  217. # volumes:
  218. # - ${CONTAINERS_DIR}/gitlab/config:/etc/gitlab
  219. # - ${CONTAINERS_DIR}/gitlab/logs:/var/log/gitlab
  220. # - ${CONTAINERS_DIR}/gitlab/data:/var/opt/gitlab
  221. # restart: always
  222. # libresonic:
  223. # image: linuxserver/libresonic
  224. # expose:
  225. # - "4040"
  226. # volumes:
  227. # - ${CONTAINERS_DIR}/libresonic:/config
  228. # - ${MEDIA_DIR}/Music:/music
  229. # environment:
  230. # - VIRTUAL_HOST=libresonic.josh1147582.jumpingcrab.com,libresonic.jossh.us
  231. # - LETSENCRYPT_HOST=libresonic.josh1147582.jumpingcrab.com,libresonic.jossh.us
  232. # - VIRTUAL_PORT=4040
  233. # - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
  234. # - TZ=America/New_York
  235. # restart: always
  236. # quassel:
  237. # image: linuxserver/quassel-core
  238. # expose:
  239. # - "4242"
  240. # links:
  241. # - postgres
  242. # volumes:
  243. # - ${CONTAINERS_DIR}/quassel:/config
  244. # - /etc/localtime:/etc/localtime:ro
  245. # environment:
  246. # - PGID=1000
  247. # - PUID=1000
  248. # - VIRTUAL_HOST=quassel.jossh.us,quassel.jibby.org
  249. # - VIRTUAL_PORT=4242
  250. # restart: always
  251. # quassel-webserver:
  252. # image: bodsch/docker-quassel-web
  253. # expose:
  254. # - "64080"
  255. # #ports:
  256. # # port- "8080:64080"
  257. # links:
  258. # - quassel
  259. # environment:
  260. # - QUASSEL_HOST=quassel
  261. # - QUASSEL_PORT=4242
  262. # - FORCE_DEFAULT=true
  263. # - WEBSERVER_MODE=http
  264. # - VIRTUAL_HOST=quassel-web.jossh.us,quassel-web.jibby.org
  265. # - VIRTUAL_PORT=64080
  266. # restart: always
  267. ### Mastodon
  268. #
  269. # redis:
  270. # restart: always
  271. # image: redis:4.0-alpine
  272. # healthcheck:
  273. # test: ["CMD", "redis-cli", "ping"]
  274. # volumes:
  275. # - ${CONTAINERS_DIR}/redis:/data
  276. #
  277. # mastodon-web:
  278. # #build: ./docker-mastodon
  279. # image: tootsuite/mastodon
  280. # restart: always
  281. # env_file: .env.mastodon
  282. # environment:
  283. # - VIRTUAL_HOST=mastodon.jibby.org
  284. # - VIRTUAL_PORT=3000
  285. # #- VIRTUAL_PROTO=https
  286. # command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000 -b '0.0.0.0'"
  287. # healthcheck:
  288. # test: ["CMD-SHELL", "wget -q --spider --header 'x-forwarded-proto: https' --proxy off localhost:3000/api/v1/instance || exit 1"]
  289. # # ports:
  290. # # - "127.0.0.1:3000:3000"
  291. # expose:
  292. # - "3000"
  293. # depends_on:
  294. # - postgres
  295. # - redis
  296. # - es
  297. # volumes:
  298. # - ${CONTAINERS_DIR}/mastodon-web/public/system:/mastodon/public/system
  299. #
  300. # mastodon-streaming:
  301. # #build: ./docker-mastodon
  302. # image: tootsuite/mastodon
  303. # restart: always
  304. # env_file: .env.mastodon
  305. # command: yarn start
  306. # healthcheck:
  307. # test: ["CMD-SHELL", "wget -q --spider --header 'x-forwarded-proto: https' --proxy off localhost:4000/api/v1/streaming/health || exit 1"]
  308. # # ports:
  309. # # - "127.0.0.1:4000:4000"
  310. # expose:
  311. # - "4000"
  312. # depends_on:
  313. # - postgres
  314. # - redis
  315. #
  316. # mastodon-sidekiq:
  317. # #build: ./docker-mastodon
  318. # image: tootsuite/mastodon
  319. # restart: always
  320. # env_file: .env.mastodon
  321. # command: bundle exec sidekiq
  322. # depends_on:
  323. # - postgres
  324. # - redis
  325. # volumes:
  326. # - ${CONTAINERS_DIR}/mastodon-sidekiq/public/system:/mastodon/public/system