- 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
450 B
YAML
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:
|