My-Weekly-ToDo-List/docker-compose.dev.yml
mARTin f9d578ddf1 fix: time grid layout alignment and task drag/drop collision detection
- 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
2026-02-23 21:29:56 +01:00

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: