edtech / docker-compose.yml
CognxSafeTrack
Initial commit: Monorepo setup with React+Vite, Fastify, Prisma, and Docker Compose
cc442ef
version: '3.8'
services:
postgres:
image: postgres:15-alpine
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: edtech
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
postgres_data:
redis_data: