mirror of
https://github.com/google-gemini/gemini-fullstack-langgraph-quickstart.git
synced 2025-08-08 00:41:45 +03:00
- Remove white space at bottom of chat interface - Prevent scroll bounce/overscroll behavior on all scroll areas - Make scroll bar thinner and more subtle with low contrast - Add hover effects for scroll bar visibility - Clean up Docker container names for better display - Improve overall scrolling experience and visual polish
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
volumes:
|
|
langgraph-data:
|
|
driver: local
|
|
services:
|
|
langgraph-redis:
|
|
image: docker.io/redis:6
|
|
container_name: langgraph-redis
|
|
healthcheck:
|
|
test: redis-cli ping
|
|
interval: 5s
|
|
timeout: 1s
|
|
retries: 5
|
|
langgraph-postgres:
|
|
image: docker.io/postgres:16
|
|
container_name: langgraph-postgres
|
|
ports:
|
|
- "5433:5432"
|
|
environment:
|
|
POSTGRES_DB: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- langgraph-data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: pg_isready -U postgres
|
|
start_period: 10s
|
|
timeout: 1s
|
|
retries: 5
|
|
interval: 5s
|
|
langgraph-api:
|
|
image: gemini-fullstack-langgraph
|
|
container_name: langgraph-api
|
|
ports:
|
|
- "8123:8000"
|
|
depends_on:
|
|
langgraph-redis:
|
|
condition: service_healthy
|
|
langgraph-postgres:
|
|
condition: service_healthy
|
|
environment:
|
|
GEMINI_API_KEY: ${GEMINI_API_KEY}
|
|
LANGSMITH_API_KEY: ${LANGSMITH_API_KEY}
|
|
REDIS_URI: redis://langgraph-redis:6379
|
|
POSTGRES_URI: postgres://postgres:postgres@langgraph-postgres:5432/postgres?sslmode=disable
|