Docker Compose (recommended)
The repo includes adocker-compose.yml for the simplest deployment path.
http://localhost:3000.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deploy Fleet with Docker or Docker Compose.
docker-compose.yml for the simplest deployment path.
git clone https://github.com/aayushxr/fleet.git
cd fleet
docker compose up -d
http://localhost:3000.
docker build -t fleet .
docker run -d \
-p 3000:3000 \
-e NODE_ENV=production \
--name fleet \
fleet
server {
listen 80;
server_name fleet.yourdomain.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
git pull
docker compose up -d --build
