Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.8"

services:
factor-api:
build:
Expand All @@ -16,6 +14,8 @@ services:
- FACTOR_MAX_UPLOAD_MB=50
- FACTOR_MAX_BATCH_SIZE=100
- FACTOR_LOG_LEVEL=INFO
- FACTOR_S3_BUCKET=factor-documents
- FACTOR_ALLOWED_ORIGINS=*
volumes:
- ../data:/app/data
- ../uploads:/app/uploads
Expand All @@ -33,3 +33,4 @@ services:
- VITE_API_URL=http://factor-api:8000
depends_on:
- factor-api
restart: unless-stopped
Loading