- Removed boxed background from grid tasks and added hover-only resize handle - Fixed vertical drop calculation using correct cell sizes - Aligned time column header perfectly using a structural ghost replica - Added collision detection to prevent dragging tasks over occupied slots
29 lines
425 B
YAML
29 lines
425 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env.docker.dev
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
- ./cache:/app/.next
|
|
user: "1001:1001"
|
|
|
|
db:
|
|
image: postgres:15
|
|
env_file:
|
|
- .env.docker.dev
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "15432:5432"
|
|
|
|
volumes:
|
|
postgres_data:
|
|
cache:
|