14 lines
325 B
YAML
14 lines
325 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
face-recognition:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- DEBUG=True
|
|
- DATABASE_URL=postgresql://username:password@host:port/database
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./src/videos:/app/videos
|
|
- ./src/face_database.pkl:/app/face_database.pkl |