Files
FocusAgenda/docker-compose.yml

23 lines
458 B
YAML

services:
mongodb:
image: mongo:7
ports:
- "27017:27017"
volumes:
- mongo_data:/data/db
app:
build: .
ports:
- "8080:8080"
depends_on:
- mongodb
environment:
MONGO_URI: mongodb://mongodb:27017/agenda_estudantil
JWT_SECRET: 4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b
CORS_ORIGINS: http://localhost:8080
SPRING_PROFILES_ACTIVE: prod
volumes:
mongo_data: