Initial commit: Second Brain Platform
Complete platform with unified design system and real API integration. Apps: Dashboard, Fitness, Budget, Inventory, Trips, Reader, Media, Settings Infrastructure: SvelteKit + Python gateway + Docker Compose
This commit is contained in:
29
services/trips/docker-compose.yml
Normal file
29
services/trips/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
trips:
|
||||
build: .
|
||||
container_name: trips
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8087:8087"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
- TZ=America/Chicago
|
||||
|
||||
trips-frontend:
|
||||
build: ./frontend
|
||||
container_name: trips-frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8091:3000"
|
||||
environment:
|
||||
- ORIGIN=https://trips.quadjourney.com
|
||||
- VITE_API_URL=http://trips:8087
|
||||
- TRIPS_API_KEY=${TRIPS_API_KEY}
|
||||
- IMMICH_URL=${IMMICH_URL}
|
||||
- IMMICH_API_KEY=${IMMICH_API_KEY}
|
||||
- TZ=America/Chicago
|
||||
depends_on:
|
||||
- trips
|
||||
Reference in New Issue
Block a user