homelab/fighter/config/zipline/docker-compose.yml
Joey Hafner d7d8937e8f
All checks were successful
Deploy to Fighter / Deploy (push) Successful in 24s
Deploy to Fighter / Notify (push) Successful in 2s
#123 Disable security headers to troubleshoot "MIME type not found" error
2024-03-10 18:57:15 -07:00

49 lines
1.2 KiB
YAML

version: '3.9'
services:
zipline:
image: ghcr.io/diced/zipline
container_name: zipline_zipline
restart: unless-stopped
networks:
- zipline
- web
env_file:
- path: ./zipline.env
required: true
- path: ./zipline_secrets.env
required: false
volumes:
- $DOCKER_DATA/zipline:/uploads
labels:
- traefik.http.routers.zipline.rule=Host(`zipline.jafner.net`)
- traefik.http.routers.zipline.tls.certresolver=lets-encrypt
- traefik.http.routers.zipline.tls.options=tls12@file
- traefik.http.services.zipline.loadbalancer.server.port=3000
#- traefik.http.routers.zipline.middlewares=securityheaders@file
postgres:
image: postgres:15
container_name: zipline_postgres
restart: unless-stopped
networks:
zipline:
aliases:
- postgres
env_file:
- path: ./postgres.env
required: true
- path: ./postgres_secrets.env
required: false
volumes:
- $DOCKER_DATA/postgres:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U zipline']
interval: 10s
timeout: 5s
retries: 5
networks:
web:
external: true
zipline: