Take control of your daily workflow with a powerful, open-source application designed specifically for the Getting Things Done (GTD) methodology. Whether managing personal errands or complex office projects, this platform provides the flexibility to organize tasks exactly how you work best. Sort actions by context or project, and keep your focus sharp by hiding items you are not ready to tackle yet.
Enjoy a seamless organizational experience with these core features:
Access tasks anywhere through a lightweight mobile interface or integrate with other tools using the robust API.
services:
tracks:
image: tracksapp/tracks:latest
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DATABASE_URL=mysql2://tracks:${DB_PASSWORD}@db/tracks
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- RAILS_SERVE_STATIC_FILES=true
- TZ=UTC
depends_on:
- db
volumes:
- ./data/assets:/usr/src/app/public/assets
db:
image: mysql:5.7
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MYSQL_DATABASE=tracks
- MYSQL_USER=tracks
- MYSQL_PASSWORD=${DB_PASSWORD}
volumes:
- ./data/mysql:/var/lib/mysqlDB_PASSWORD=your_secure_db_password
DB_ROOT_PASSWORD=your_secure_root_password
SECRET_KEY_BASE=your_generated_secret_key_base_stringAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago