mirror of
https://github.com/Tony0410/nextstep.git
synced 2026-05-24 13:21:39 +08:00
A calm, reliable app to help manage appointments, medications, and notes for chemo patients and their families. Features: - Today dashboard with next appointment and medications due - Medication tracking with multiple schedule types (fixed times, interval, weekdays, PRN) - One-tap dose logging with 5-minute undo window - Questions for doctor tracking - Family sharing with workspace model and invite links - Offline-first with IndexedDB and sync - Docker Compose deployment with Tailscale Funnel support Tech stack: - Next.js 14 (App Router) + TypeScript + Tailwind CSS - PostgreSQL + Prisma - Argon2 password hashing + session cookies - Dexie.js for IndexedDB Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: nextstep-app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3000:3000" # Bind to localhost only for Tailscale Funnel
|
|
environment:
|
|
- DATABASE_URL=postgresql://nextstep:${DB_PASSWORD:-nextstep}@db:5432/nextstep?schema=public
|
|
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
|
|
- NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL:-http://localhost:3000}
|
|
- TZ=Australia/Perth
|
|
- NODE_ENV=production
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
networks:
|
|
- nextstep-network
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
container_name: nextstep-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=nextstep
|
|
- POSTGRES_PASSWORD=${DB_PASSWORD:-nextstep}
|
|
- POSTGRES_DB=nextstep
|
|
- TZ=Australia/Perth
|
|
- PGTZ=Australia/Perth
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
networks:
|
|
- nextstep-network
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U nextstep -d nextstep"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 10s
|
|
# Do not expose PostgreSQL to the host - only accessible within the network
|
|
# If you need direct access, uncomment below:
|
|
# ports:
|
|
# - "127.0.0.1:5432:5432"
|
|
|
|
volumes:
|
|
postgres_data:
|
|
name: nextstep-postgres-data
|
|
|
|
networks:
|
|
nextstep-network:
|
|
name: nextstep-network
|
|
driver: bridge
|