### Docker Compose Setup for Mularr Source: https://github.com/joecarl/mularr/blob/main/README.md Quick start guide for deploying Mularr using Docker Compose. Ensure Docker and Docker Compose are installed. ```yaml services: mularr: image: ghcr.io/joecarl/mularr container_name: mularr restart: unless-stopped ports: - '8940:8940' volumes: - ./data:/app/data # Check docker-compose.example.yml for a full configuration guide ``` -------------------------------- ### Frontend Development Setup Source: https://github.com/joecarl/mularr/blob/main/README.md Command to start the Mularr frontend in development mode. Navigate to the frontend directory first. ```bash cd frontend npm run dev ``` -------------------------------- ### Start Mularr with Docker Compose Source: https://github.com/joecarl/mularr/blob/main/README.md Command to run the Mularr Docker Compose setup in detached mode. ```bash docker-compose up -d ``` -------------------------------- ### Backend Development Setup Source: https://github.com/joecarl/mularr/blob/main/README.md Command to start the Mularr backend in development mode. Navigate to the backend directory first. ```bash cd backend npm run dev ``` -------------------------------- ### Build Mularr Docker Image Source: https://github.com/joecarl/mularr/blob/main/README.md Command to build the Mularr Docker image from the Dockerfile in the project root. ```bash docker build -t mularr . ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.