mirror of
https://github.com/TronoSfera/Law.git
synced 2026-05-18 10:03:45 +03:00
97 lines
1.9 KiB
YAML
97 lines
1.9 KiB
YAML
services:
|
|
edge:
|
|
image: nginx:1.27-alpine
|
|
container_name: law-edge
|
|
restart: unless-stopped
|
|
read_only: true
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
tmpfs:
|
|
- /var/cache/nginx
|
|
- /var/run
|
|
- /tmp
|
|
depends_on:
|
|
frontend:
|
|
condition: service_healthy
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./deploy/nginx/edge-https.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- letsencrypt:/etc/letsencrypt
|
|
- certbot_webroot:/var/www/certbot
|
|
|
|
certbot:
|
|
image: certbot/certbot:latest
|
|
container_name: law-certbot
|
|
restart: "no"
|
|
volumes:
|
|
- letsencrypt:/etc/letsencrypt
|
|
- certbot_webroot:/var/www/certbot
|
|
|
|
frontend:
|
|
ports: []
|
|
read_only: true
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- ./frontend/nginx.prod.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- ./deploy/tls/minio/ca.crt:/etc/nginx/minio-ca.crt:ro
|
|
tmpfs:
|
|
- /var/cache/nginx
|
|
- /var/run
|
|
- /tmp
|
|
|
|
backend:
|
|
ports: []
|
|
volumes:
|
|
- ./deploy/tls/minio/ca.crt:/etc/ssl/minio/ca.crt:ro
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
db:
|
|
ports: []
|
|
|
|
redis:
|
|
ports: []
|
|
|
|
minio:
|
|
ports: []
|
|
volumes:
|
|
- miniodata:/data
|
|
- ./deploy/tls/minio:/root/.minio/certs:ro
|
|
|
|
chat-service:
|
|
volumes: []
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
email-service:
|
|
volumes: []
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
worker:
|
|
volumes:
|
|
- ./deploy/tls/minio/ca.crt:/etc/ssl/minio/ca.crt:ro
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
beat:
|
|
volumes: []
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
security-scheduler:
|
|
volumes:
|
|
- ./reports:/app/reports
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
# Production: keep official ClamAV image on x86_64 hosts.
|
|
clamav:
|
|
platform: linux/amd64
|
|
|
|
volumes:
|
|
letsencrypt:
|
|
certbot_webroot:
|