docker-compose.yaml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. environment:
  20. - DEFAULT_HOST=jibby.org
  21. restart: always
  22. # An example of a static HTTP file hosting site
  23. camera:
  24. image: nginx
  25. volumes:
  26. - ${MEDIA_DIR}/Camera:/home/app:ro
  27. - ./conf.d/static.conf:/etc/nginx/sites-enabled/default
  28. - ./conf.d/static.conf:/etc/nginx/conf.d/default.conf
  29. environment:
  30. - VIRTUAL_HOST=camera.jibby.org
  31. - CERT_NAME=shared
  32. restart: always
  33. postgres:
  34. image: postgres:10.5
  35. volumes:
  36. - ${CONTAINERS_DIR}/postgres/data:/var/lib/postgresql/data
  37. - ${CONTAINERS_DIR}/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
  38. environment:
  39. - POSTGRES_USER=${POSTGRES_USER}
  40. - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  41. restart: always
  42. mariadb:
  43. image: mariadb
  44. volumes:
  45. - ${CONTAINERS_DIR}/mariadb:/var/lib/mysql
  46. environment:
  47. # If mariadb is used for more than wordpress in the future, it'll need
  48. # its own /docker-entrypoint-initdb.d entry. But for now, envrionment
  49. # variables are fine.
  50. - MYSQL_DATABASE=wordpress
  51. - MYSQL_USER=${MARIADB_USER}
  52. - MYSQL_PASSWORD=${MARIADB_PASSWORD}
  53. - MYSQL_ROOT_PASSWORD=${MARIADB_PASSWORD}
  54. restart: always
  55. wordpress:
  56. image: wordpress
  57. links:
  58. - mariadb:mysql
  59. volumes:
  60. - ${CONTAINERS_DIR}/wordpress:/var/www/html
  61. environment:
  62. - WORDPRESS_DB_USER=${MARIADB_USER}
  63. - WORDPRESS_DB_PASSWORD=${MARIADB_PASSWORD}
  64. - VIRTUAL_HOST=jibby.org
  65. - VIRTUAL_PORT=3000
  66. restart: always
  67. nextcloud:
  68. image: nextcloud
  69. expose:
  70. - "80"
  71. links:
  72. - postgres
  73. volumes:
  74. - ${CONTAINERS_DIR}/nextcloud:/var/www/html
  75. environment:
  76. - VIRTUAL_HOST=nextcloud.jibby.org
  77. - VIRTUAL_PORT=80
  78. - CERT_NAME=shared
  79. restart: always
  80. gogs:
  81. image: gogs/gogs
  82. expose:
  83. - "3000"
  84. volumes:
  85. - ${CONTAINERS_DIR}/gogs:/data
  86. #links:
  87. # - postgres
  88. environment:
  89. - VIRTUAL_HOST=gogs.jibby.org
  90. - VIRTUAL_PORT=3000
  91. - CERT_NAME=shared
  92. restart: always
  93. matrix:
  94. image: matrixdotorg/synapse
  95. expose:
  96. - "8008"
  97. links:
  98. - postgres
  99. environment:
  100. - SYNAPSE_SERVER_NAME=matrix.jibby.org
  101. - SYNAPSE_REPORT_STATS=no
  102. - SYNAPSE_NO_TLS=true
  103. - SYNAPSE_ENABLE_REGISTRATION=no
  104. - SYNAPSE_LOG_LEVEL=INFO
  105. - SYNAPSE_REGISTRATION_SHARED_SECRET=${POSTGRES_PASSWORD}
  106. - POSTGRES_DB=synapse
  107. - POSTGRES_HOST=postgres
  108. - POSTGRES_USER=synapse
  109. - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  110. - VIRTUAL_HOST=matrix.jibby.org
  111. - VIRTUAL_PROTO=http
  112. - VIRTUAL_PORT=8008
  113. volumes:
  114. - ${CONTAINERS_DIR}/matrix:/data
  115. restart: always
  116. keeweb:
  117. image: antelle/keeweb
  118. expose:
  119. - "443"
  120. environment:
  121. - VIRTUAL_HOST=keeweb.jibby.org
  122. - VIRTUAL_PROTO=https
  123. - VIRTUAL_PORT=443
  124. - CERT_NAME=shared
  125. restart: always
  126. selfoss:
  127. image: hardware/selfoss
  128. expose:
  129. - "8888"
  130. links:
  131. - postgres
  132. volumes:
  133. - ${CONTAINERS_DIR}/selfoss:/selfoss/data
  134. environment:
  135. - VIRTUAL_HOST=selfoss.jibby.org
  136. - VIRTUAL_PORT=8888
  137. - CERT_NAME=shared
  138. restart: always
  139. jellyfin:
  140. image: jellyfin/jellyfin
  141. expose:
  142. - "8096"
  143. volumes:
  144. - ${CONTAINERS_DIR}/jellyfin:/config
  145. - ${MEDIA_DIR}:/media
  146. environment:
  147. - VIRTUAL_HOST=jellyfin.jibby.org
  148. - VIRTUAL_PORT=8096
  149. - CERT_NAME=shared
  150. restart: always