My-Weekly-ToDo-List/docker-compose.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
450 B
YAML

version: '3.8'
services:
app:
image: my-weekly-todo:latest
ports:
- "13000:3000"
env_file:
- .env.docker
depends_on:
- db
volumes:
- app_logs:/app/logs
restart: unless-stopped
db:
image: postgres:15
env_file:
- .env.docker
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "15432:5432"
restart: unless-stopped
volumes:
postgres_data:
app_logs: