- Update docker-compose to use ./data folder for SQLite database - Add Docker section to README with setup instructions
13 lines
228 B
YAML
13 lines
228 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- DATABASE_URL=file:./data/dev.db
|
|
restart: unless-stopped
|