Skip to content

Commit 44c4dbd

Browse files
committed
feat: add development docker-compose configuration
- Add docker-compose-dev.yml for local development - Uses local build instead of pre-built image - Sets SEARCH_HIGHLIGHT_LIMIT=10 for testing higher highlight limits - Enables easier development workflow with live code changes
1 parent f0ee916 commit 44c4dbd

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

docker-compose-dev.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
masscode-web:
3+
build:
4+
context: .
5+
ports:
6+
- "8080:80"
7+
volumes:
8+
- ./db.json:/data/db.json:ro
9+
environment:
10+
- SEARCH_HIGHLIGHT_LIMIT=10
11+
restart: unless-stopped

0 commit comments

Comments
 (0)