Installation¶
Learn how to install Komandorr using your preferred method.
Docker Installation¶
Recommended Method
Docker is the recommended installation method for most users.
Using Docker Run¶
docker run -d \
--name komandorr \
-p 3000:3000 \
-v $(pwd)/data:/app/data \
-e PLEX_URL=http://your-plex-server:32400 \
-e PLEX_TOKEN=your-plex-token \
cyb3rgh05t/komandorr:latest
Using Docker Compose¶
Create a docker-compose.yml file:
version: "3.8"
services:
komandorr:
image: cyb3rgh05t/komandorr:latest
container_name: komandorr
ports:
- "3000:3000"
volumes:
- ./data:/app/data
environment:
- PLEX_URL=http://your-plex-server:32400
- PLEX_TOKEN=your-plex-token
- CHECK_INTERVAL=60
restart: unless-stopped
Start the container:
Manual Installation¶
Backend Setup¶
- Clone the repository:
- Install Python dependencies:
- Start the backend:
Frontend Setup¶
- Install Node.js dependencies:
- Build the frontend:
- Start the development server:
Verification¶
After installation, verify Komandorr is running:
- Open your browser to
http://localhost:3000 - You should see the Komandorr login screen
- Default credentials:
admin/admin(change immediately!)