-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathdocker-compose.build.yml
More file actions
33 lines (31 loc) · 942 Bytes
/
docker-compose.build.yml
File metadata and controls
33 lines (31 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: "3.9"
services:
scriberr:
# Build from local Dockerfile; replace with `image: ghcr.io/rishikanthc/scriberr:latest`
# if you prefer pulling a prebuilt image.
build:
context: .
dockerfile: Dockerfile
image: scriberr:local
# image: ghcr.io/rishikanthc/scriberr:v1.0.0
container_name: scriberr
ports:
- "8080:8080"
# environment:
# - HOST=0.0.0.0
# - PORT=8080
# - DATABASE_PATH=/app/data/scriberr.db
# - UPLOAD_DIR=/app/data/uploads
# - PUID=${PUID:-1000}
# - PGID=${PGID:-1000}
environment:
# Security: already set in container, but can be overridden
- APP_ENV=production
# CORS: comma-separated list of allowed origins for production
# - ALLOWED_ORIGINS=https://your-domain.com
volumes:
- ./scriberr-data:/app/data
- ./env-data:/app/whisperx-env
restart: unless-stopped
volumes:
scriberr-data: