mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-11-01 18:29:42 +00:00
### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ Issue link:#[[Link the issue here](https://github.com/infiniflow/ragflow/issues/226)] ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
32 lines
761 B
YAML
32 lines
761 B
YAML
version: '2.2'
|
|
|
|
include:
|
|
- path: ./docker-compose-base.yml
|
|
env_file: ./.env
|
|
|
|
services:
|
|
ragflow:
|
|
depends_on:
|
|
mysql:
|
|
condition: service_healthy
|
|
es01:
|
|
condition: service_healthy
|
|
image: infiniflow/ragflow:v1.0
|
|
container_name: ragflow-server
|
|
ports:
|
|
- ${SVR_HTTP_PORT}:9380
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- ./service_conf.yaml:/ragflow/conf/service_conf.yaml
|
|
- ./entrypoint.sh:/ragflow/entrypoint.sh
|
|
- ./ragflow-logs:/ragflow/logs
|
|
- ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
|
|
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
|
|
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
|
|
environment:
|
|
- TZ=${TIMEZONE}
|
|
networks:
|
|
- ragflow
|
|
restart: always
|