version: '3.8'

services:
  app:
    build: .
    ports:
      - "8088:8080"
    environment:
      - DATABASE_URL=postgresql://app:1o1OaeavPjW89sW6@db:5432/production
      - REDIS_URL=redis://redis:6379/0
      - JWT_SECRET=Dj+E8Us2BA3A/nW5VxU6pgNJsaylcn01
    depends_on:
      - db
      - redis
    restart: unless-stopped

  db:
    image: postgres:15
    environment:
      POSTGRES_DB: production
      POSTGRES_USER: app
      POSTGRES_PASSWORD: Q9AEzcpha3m1N70J
    volumes:
      - pgdata:/var/lib/postgresql/data
    ports:
      - "5432:5432"

  redis:
    image: redis:7-alpine
    command: redis-server --requirepass nciY3EZ8VDxat9tt
    ports:
      - "6379:6379"

  nginx:
    image: nginx:latest
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf
      - ./certs:/etc/nginx/certs

volumes:
  pgdata:
