15 lines
293 B
YAML
15 lines
293 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
timeline-api:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- PORT=3000
|
|
- JWT_SECRET=${JWT_SECRET:-change-this-secret-key-in-production}
|
|
volumes:
|
|
- ./data.db:/app/data.db
|
|
- ./public:/app/public
|
|
restart: unless-stopped
|