### Install Dockyard using .deb package Source: https://github.com/ropali/dockyard/blob/main/README.md Download and install the latest .deb package for Dockyard. Use 'sudo apt-get install -f' if dependencies are missing. ```bash # Download the latest .deb package wget https://github.com/ropali/dockyard/releases/download/vX.Y.Z/dockyard_X.Y.Z_amd64.deb # Install the package sudo dpkg -i dockyard_X.Y.Z_amd64.deb # If there are missing dependencies, run sudo apt-get install -f ``` -------------------------------- ### Build Dockyard from Source Source: https://github.com/ropali/dockyard/blob/main/README.md Clone the repository, install Node.js dependencies, build the Rust backend, and run the app in development mode. ```bash # Clone the repository git clone https://github.com/ropali/dockyard.git cd dockyard # Install dependencies npm install # Build the Rust backend cargo build --release # Run the app in development mode npm run tauri dev ``` -------------------------------- ### Install Dockyard using AppImage Source: https://github.com/ropali/dockyard/blob/main/README.md Download the latest AppImage release, make it executable, and run Dockyard. ```bash # Download the latest release wget https://github.com/ropali/dockyard/releases/download/vX.Y.Z/dockyard-X.Y.Z.AppImage # Make it executable chmod +x dockyard-X.Y.Z.AppImage # Run Dockyard ./dockyard-X.Y.Z.AppImage ``` -------------------------------- ### Bypass macOS quarantine restriction Source: https://github.com/ropali/dockyard/blob/main/README.md Use this terminal command to bypass Apple's security policies if Dockyard cannot be installed directly due to lack of developer certification. ```bash sudo xattr -d com.apple.quarantine /Applications/dockyard.app/ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.