Skip to main content
Fleet is designed to work with zero configuration, but the following environment variables are available for customization.

Variables

Example .env

PORT=3000
NODE_ENV=production
ROOM_TTL_MINUTES=30

Docker Compose

Pass environment variables in docker-compose.yml:
services:
  fleet:
    build: .
    ports:
      - "3000:3000"
    environment:
      - NODE_ENV=production
      - PORT=3000
      - ROOM_TTL_MINUTES=30