docker-compose.yml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. version: '3'
  2. networks:
  3. default:
  4. driver: overlay
  5. services:
  6. traefik:
  7. image: traefik:v2.2
  8. ports:
  9. - 80:80
  10. # - 443:443
  11. deploy:
  12. placement:
  13. constraints:
  14. - node.role == manager
  15. labels:
  16. # Enable the dashboard UI
  17. - traefik.enable=true
  18. - traefik.http.routers.api.rule=Host(`board.${DOMAIN}`)
  19. - traefik.http.routers.api.service=api@internal
  20. - traefik.http.routers.api.middlewares=auth
  21. - traefik.http.middlewares.auth.basicauth.users=${TRAEFIK_API_USERS}
  22. # Dummy service for Swarm port detection. The port can be any valid integer value.
  23. - traefik.http.services.dummy-svc.loadbalancer.server.port=9999
  24. - traefik.http.routers.traefik.tls=true
  25. - traefik.http.routers.traefik.tls.certresolver=cloudflare
  26. - traefik.http.routers.traefik.tls.domains[0].main=${DOMAIN}
  27. - traefik.http.routers.traefik.tls.domains[1].sans=*.${DOMAIN}
  28. volumes:
  29. - /var/run/docker.sock:/var/run/docker.sock:ro
  30. - ${CONTAINERS_DIR}/traefik:/certificates
  31. command:
  32. - --providers.docker=true
  33. - --providers.docker.exposedbydefault=false
  34. - --providers.docker.swarmmode=true
  35. - --entrypoints.web.address=:80
  36. #- --entrypoints.web.redirections.entrypoint.permanent=false
  37. #- --entrypoints.web.redirections.entryPoint.to=websecure
  38. #- --entrypoints.web.redirections.entryPoint.scheme=https
  39. #- --entrypoints.websecure.address=:443
  40. #- --certificatesresolvers.le.acme.email=${LETSENCRYPT_EMAIL}
  41. #- --certificatesresolvers.le.acme.storage=/certificates/acme.json
  42. #- --certificatesresolvers.le.acme.dnschallenge.provider=cloudflare
  43. - --accesslog=true
  44. - --log=true
  45. - --api=true
  46. environment:
  47. # - CLOUDFLARE_EMAIL=${CLOUDFLARE_EMAIL}
  48. # - CLOUDFLARE_API_KEY=${CLOUDFLARE_API_KEY}
  49. # An example of a static HTTP file hosting site
  50. #camera:
  51. # image: nginx
  52. # deploy:
  53. # labels:
  54. # - traefik.enable=true
  55. # - traefik.http.services.jekyll.loadbalancer.server.port=80
  56. # - traefik.http.routers.jekyll.rule=Host(`camera.${DOMAIN}`)
  57. # volumes:
  58. # - ${MEDIA_DIR}/Camera:/home/app:ro
  59. # - ./conf.d/static.conf:/etc/nginx/sites-enabled/default
  60. # - ./conf.d/static.conf:/etc/nginx/conf.d/default.conf
  61. # restart: always
  62. postgres:
  63. image: postgres:10.5
  64. volumes:
  65. - ${CONTAINERS_DIR}/postgres/data:/var/lib/postgresql/data
  66. - ${CONTAINERS_DIR}/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
  67. environment:
  68. - POSTGRES_USER=${POSTGRES_USER}
  69. - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  70. restart: always
  71. jekyll:
  72. image: jibby0/docker-jekyll-webhook
  73. deploy:
  74. labels:
  75. - traefik.enable=true
  76. - traefik.http.services.jekyll.loadbalancer.server.port=80
  77. - traefik.http.routers.jekyll.rule=Host(`${DOMAIN}`)
  78. environment:
  79. - TZ=America/New_York
  80. - WEBHOOK_SECRET=${WEBHOOK_SECRET}
  81. - REPO=https://github.com/jibby0/blog.git
  82. restart: always
  83. volumes:
  84. - ${CONTAINERS_DIR}/jekyll/vendor_cache:/vendor
  85. nextcloud:
  86. image: nextcloud
  87. deploy:
  88. labels:
  89. - traefik.enable=true
  90. - traefik.http.services.nextcloud.loadbalancer.server.port=80
  91. - traefik.http.routers.nextcloud.rule=Host(`nextcloud.${DOMAIN}`)
  92. expose:
  93. - "80"
  94. links:
  95. - postgres
  96. volumes:
  97. - ${CONTAINERS_DIR}/nextcloud:/var/www/html
  98. environment:
  99. - VIRTUAL_HOST=nextcloud.jibby.org
  100. - VIRTUAL_PORT=80
  101. - CERT_NAME=shared
  102. restart: always
  103. gogs:
  104. image: gogs/gogs
  105. expose:
  106. - "3000"
  107. volumes:
  108. - ${CONTAINERS_DIR}/gogs:/data
  109. # NOTE: My gogs instance isn't happy with postgres. For now, it's a small server
  110. # and sqlite is fine, but I should fix this eventually.
  111. #links:
  112. # - postgres
  113. environment:
  114. - VIRTUAL_HOST=gogs.jibby.org
  115. - VIRTUAL_PORT=3000
  116. - CERT_NAME=shared
  117. restart: always
  118. matrix:
  119. image: matrixdotorg/synapse
  120. expose:
  121. - "8008"
  122. links:
  123. - postgres
  124. environment:
  125. # NOTE: These don't directly configure anything anymore.
  126. # They can be used with `migrate_config` to build
  127. # homeserver.yaml
  128. # - SYNAPSE_SERVER_NAME=matrix.jibby.org
  129. # - SYNAPSE_REPORT_STATS=no
  130. # - SYNAPSE_NO_TLS=true
  131. # - SYNAPSE_ENABLE_REGISTRATION=no
  132. # - SYNAPSE_LOG_LEVEL=INFO
  133. # - SYNAPSE_REGISTRATION_SHARED_SECRET=${POSTGRES_PASSWORD}
  134. # - POSTGRES_DB=synapse
  135. # - POSTGRES_HOST=postgres
  136. # - POSTGRES_USER=synapse
  137. # - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
  138. - VIRTUAL_HOST=matrix.jibby.org
  139. - VIRTUAL_PROTO=http
  140. - VIRTUAL_PORT=8008
  141. volumes:
  142. - ${CONTAINERS_DIR}/matrix:/data
  143. restart: always
  144. keeweb:
  145. image: antelle/keeweb
  146. expose:
  147. - "443"
  148. environment:
  149. - VIRTUAL_HOST=keeweb.jibby.org
  150. - VIRTUAL_PROTO=https
  151. - VIRTUAL_PORT=443
  152. - CERT_NAME=shared
  153. restart: always
  154. selfoss:
  155. image: hardware/selfoss
  156. expose:
  157. - "8888"
  158. links:
  159. - postgres
  160. volumes:
  161. - ${CONTAINERS_DIR}/selfoss:/selfoss/data
  162. environment:
  163. - CRON_PERIOD=5m
  164. - VIRTUAL_HOST=selfoss.jibby.org
  165. - VIRTUAL_PORT=8888
  166. - CERT_NAME=shared
  167. restart: always
  168. jellyfin:
  169. image: jellyfin/jellyfin
  170. expose:
  171. - "8096"
  172. volumes:
  173. - ${CONTAINERS_DIR}/jellyfin:/config
  174. - ${MEDIA_DIR}:/media
  175. - /dev/shm/jellyfin-transcodes:/transcodes
  176. - /dev/shm/jellyfin-cache:/cache
  177. environment:
  178. - VIRTUAL_HOST=jellyfin.jibby.org
  179. - VIRTUAL_PORT=8096
  180. - CERT_NAME=shared
  181. restart: always