- docker-compose: mount ~/tcms-db-data for the sqlite database - add CLAUDE.md agent coding guidelines Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
365 B
YAML
17 lines
365 B
YAML
services:
|
|
unittcms:
|
|
image: unittcms:latest
|
|
build: .
|
|
ports:
|
|
- '8000:8000'
|
|
environment:
|
|
- PORT=8000
|
|
- SECRET_KEY=your_secret_key_here
|
|
- IS_DEMO=false # set to true to seed the database
|
|
volumes:
|
|
- ~/tcms-db-data:/app/backend/database
|
|
- ./backend/public/uploads:/app/backend/public/uploads
|
|
|
|
volumes:
|
|
db-data:
|