OptiStack is a professional-grade, self-hosted platform designed for biohackers and health optimizers who need to manage complex supplement and medication protocols. It replaces messy spreadsheets and mental checklists, handling the cognitive load of tracking dosages, checking for contraindications, and helping you stay consistent—all in a privacy-first, Docker-deployable package.
Whether you use cloud-based AI or a completely private local AI via Ollama, you can get powerful insights into your health regimen. Key features include:
services:
optistack:
image: ghcr.io/tylermiranda/optistack:latest
container_name: optistack
ports:
- "8080:8080"
environment:
- DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME}
- SECRET_KEY=${SECRET_KEY}
depends_on:
- db
restart: unless-stopped
db:
image: postgres:15-alpine
container_name: optistack_db
environment:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME}
volumes:
- ./db-data:/var/lib/postgresql/data
restart: unless-stoppedDB_USER=optistack
DB_PASSWORD=super_secret_postgres_password
DB_NAME=optistack_db
SECRET_KEY=your_super_secret_keyAuto-fetched about 14 hours ago
Auto-fetched about 14 hours ago