123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- version: '3'
- networks:
- default:
- driver: overlay
- services:
- traefik:
- image: traefik:v2.2
- ports:
- - 80:80
- # - 443:443
- deploy:
- placement:
- constraints:
- - node.role == manager
- labels:
- # Enable the dashboard UI
- - traefik.enable=true
- - traefik.http.routers.api.rule=Host(`board.${DOMAIN}`)
- - traefik.http.routers.api.service=api@internal
- - traefik.http.routers.api.middlewares=auth
- - traefik.http.middlewares.auth.basicauth.users=${TRAEFIK_API_USERS}
- # Dummy service for Swarm port detection. The port can be any valid integer value.
- - traefik.http.services.dummy-svc.loadbalancer.server.port=9999
- - traefik.http.routers.traefik.tls=true
- - traefik.http.routers.traefik.tls.certresolver=cloudflare
- - traefik.http.routers.traefik.tls.domains[0].main=${DOMAIN}
- - traefik.http.routers.traefik.tls.domains[1].sans=*.${DOMAIN}
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock:ro
- - ${CONTAINERS_DIR}/traefik:/certificates
- command:
- - --providers.docker=true
- - --providers.docker.exposedbydefault=false
- - --providers.docker.swarmmode=true
- - --entrypoints.web.address=:80
- #- --entrypoints.web.redirections.entrypoint.permanent=false
- #- --entrypoints.web.redirections.entryPoint.to=websecure
- #- --entrypoints.web.redirections.entryPoint.scheme=https
- #- --entrypoints.websecure.address=:443
- #- --certificatesresolvers.le.acme.email=${LETSENCRYPT_EMAIL}
- #- --certificatesresolvers.le.acme.storage=/certificates/acme.json
- #- --certificatesresolvers.le.acme.dnschallenge.provider=cloudflare
- - --accesslog=true
- - --log=true
- - --api=true
- environment:
- # - CLOUDFLARE_EMAIL=${CLOUDFLARE_EMAIL}
- # - CLOUDFLARE_API_KEY=${CLOUDFLARE_API_KEY}
- # An example of a static HTTP file hosting site
- #camera:
- # image: nginx
- # deploy:
- # labels:
- # - traefik.enable=true
- # - traefik.http.services.jekyll.loadbalancer.server.port=80
- # - traefik.http.routers.jekyll.rule=Host(`camera.${DOMAIN}`)
- # volumes:
- # - ${MEDIA_DIR}/Camera:/home/app:ro
- # - ./conf.d/static.conf:/etc/nginx/sites-enabled/default
- # - ./conf.d/static.conf:/etc/nginx/conf.d/default.conf
- # restart: always
- postgres:
- image: postgres:10.5
- volumes:
- - ${CONTAINERS_DIR}/postgres/data:/var/lib/postgresql/data
- - ${CONTAINERS_DIR}/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- environment:
- - POSTGRES_USER=${POSTGRES_USER}
- - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- restart: always
- jekyll:
- image: jibby0/docker-jekyll-webhook
- deploy:
- labels:
- - traefik.enable=true
- - traefik.http.services.jekyll.loadbalancer.server.port=80
- - traefik.http.routers.jekyll.rule=Host(`${DOMAIN}`)
- environment:
- - TZ=America/New_York
- - WEBHOOK_SECRET=${WEBHOOK_SECRET}
- - REPO=https://github.com/jibby0/blog.git
- restart: always
- volumes:
- - ${CONTAINERS_DIR}/jekyll/vendor_cache:/vendor
- nextcloud:
- image: nextcloud
- deploy:
- labels:
- - traefik.enable=true
- - traefik.http.services.nextcloud.loadbalancer.server.port=80
- - traefik.http.routers.nextcloud.rule=Host(`nextcloud.${DOMAIN}`)
- expose:
- - "80"
- links:
- - postgres
- volumes:
- - ${CONTAINERS_DIR}/nextcloud:/var/www/html
- environment:
- - VIRTUAL_HOST=nextcloud.jibby.org
- - VIRTUAL_PORT=80
- - CERT_NAME=shared
- restart: always
- gogs:
- image: gogs/gogs
- expose:
- - "3000"
- volumes:
- - ${CONTAINERS_DIR}/gogs:/data
- # NOTE: My gogs instance isn't happy with postgres. For now, it's a small server
- # and sqlite is fine, but I should fix this eventually.
- #links:
- # - postgres
- environment:
- - VIRTUAL_HOST=gogs.jibby.org
- - VIRTUAL_PORT=3000
- - CERT_NAME=shared
- restart: always
- matrix:
- image: matrixdotorg/synapse
- expose:
- - "8008"
- links:
- - postgres
- environment:
- # NOTE: These don't directly configure anything anymore.
- # They can be used with `migrate_config` to build
- # homeserver.yaml
- # - SYNAPSE_SERVER_NAME=matrix.jibby.org
- # - SYNAPSE_REPORT_STATS=no
- # - SYNAPSE_NO_TLS=true
- # - SYNAPSE_ENABLE_REGISTRATION=no
- # - SYNAPSE_LOG_LEVEL=INFO
- # - SYNAPSE_REGISTRATION_SHARED_SECRET=${POSTGRES_PASSWORD}
- # - POSTGRES_DB=synapse
- # - POSTGRES_HOST=postgres
- # - POSTGRES_USER=synapse
- # - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- - VIRTUAL_HOST=matrix.jibby.org
- - VIRTUAL_PROTO=http
- - VIRTUAL_PORT=8008
- volumes:
- - ${CONTAINERS_DIR}/matrix:/data
- restart: always
- keeweb:
- image: antelle/keeweb
- expose:
- - "443"
- environment:
- - VIRTUAL_HOST=keeweb.jibby.org
- - VIRTUAL_PROTO=https
- - VIRTUAL_PORT=443
- - CERT_NAME=shared
- restart: always
- selfoss:
- image: hardware/selfoss
- expose:
- - "8888"
- links:
- - postgres
- volumes:
- - ${CONTAINERS_DIR}/selfoss:/selfoss/data
- environment:
- - CRON_PERIOD=5m
- - VIRTUAL_HOST=selfoss.jibby.org
- - VIRTUAL_PORT=8888
- - CERT_NAME=shared
- restart: always
- jellyfin:
- image: jellyfin/jellyfin
- expose:
- - "8096"
- volumes:
- - ${CONTAINERS_DIR}/jellyfin:/config
- - ${MEDIA_DIR}:/media
- - /dev/shm/jellyfin-transcodes:/transcodes
- - /dev/shm/jellyfin-cache:/cache
- environment:
- - VIRTUAL_HOST=jellyfin.jibby.org
- - VIRTUAL_PORT=8096
- - CERT_NAME=shared
- restart: always
|