|
1 | | -# Nookat |
| 1 | +<h1 align="center"> |
| 2 | + <img src="public/logo.png" alt="Nookat" width="200" /> |
| 3 | +</h1> |
2 | 4 |
|
| 5 | +<p align="center"> |
3 | 6 | Nookat is a lightweight container management tool that provides all the essential features you need without the bloat. Fast, intuitive, and completely free. |
4 | | -Built with Tauri, React, and TypeScript. |
| 7 | +</p> |
| 8 | + |
| 9 | +<p align="center"> |
| 10 | +Built with <strong>Tauri</strong>, <strong>React</strong>, and <strong>TypeScript</strong>. |
| 11 | +</p> |
| 12 | + |
| 13 | +<div align="center"> |
| 14 | + |
| 15 | + |
| 16 | +[](https://www.rust-lang.org/) |
| 17 | +[](https://reactjs.org/) |
| 18 | +[](https://tauri.app/) |
| 19 | + |
| 20 | +</div> |
| 21 | + |
| 22 | +<div align="center"> |
| 23 | + |
| 24 | +[](https://github.com/nookat-io/nookat/releases) |
| 25 | +[](https://github.com/nookat-io/nookat/releases) |
| 26 | +[](https://github.com/nookat-io/nookat/releases) |
| 27 | + |
| 28 | +</div> |
| 29 | + |
| 30 | +<div align="center"> |
5 | 31 |
|
6 | 32 | **Get started for free.** [Download](https://github.com/nookat-io/nookat/releases) | [Website](https://nookat-io.github.io) |
7 | 33 |
|
8 | | -## Features |
| 34 | +</div> |
| 35 | + |
| 36 | +--- |
| 37 | + |
| 38 | +## Key Features |
| 39 | + |
| 40 | +- **🚀 Lightweight & Fast**: Built with Rust and Tauri for optimal performance |
| 41 | +- **📦 Container Management**: Start, stop, and manage containers with ease |
| 42 | +- **🖼️ Image Management**: Browse, pull, and manage Docker images |
| 43 | +- **🌐 Network Management**: Configure and monitor Docker networks |
| 44 | +- **💾 Volume Management**: Handle Docker volumes and data persistence |
| 45 | +- **⚙️ Settings & Configuration**: Customize your Docker experience |
| 46 | +- **🔧 Auto Container Engine Setup**: Downloads and Installs container engines if needed, with Colima as the default |
| 47 | +- **🎨 Modern UI**: Clean, intuitive interface built with React and Tailwind CSS |
| 48 | +- **🆓 Completely Free**: No premium features, no subscriptions |
| 49 | + |
| 50 | +## Screenshots |
9 | 51 |
|
10 | | -- Container management and monitoring |
11 | | -- Image management |
12 | | -- Network management |
13 | | -- Volume management |
14 | | -- Settings and configurations |
| 52 | +<div align="center"> |
| 53 | + |
| 54 | + |
| 55 | +_Container management interface_ |
| 56 | + |
| 57 | +</div> |
| 58 | + |
| 59 | +> **📸 More Screenshots Available** |
| 60 | +> |
| 61 | +> Explore the complete collection of screenshots in the [`screenshots/`](screenshots/) folder, including both light and dark theme variants for all major features |
| 62 | +
|
| 63 | +## Installation |
| 64 | + |
| 65 | +### Prerequisites |
| 66 | + |
| 67 | +- **macOS**: macOS 10.15 or later |
| 68 | +- **Linux**: Most modern distributions |
| 69 | +- **Windows**: Windows 10 or later |
| 70 | +- **Any Docker-compatible container runtime**, or install Colima in Nookat app settings |
| 71 | +- [Tauri](https://tauri.app/start/prerequisites/) (for development) |
| 72 | + |
| 73 | +### Download Nookat |
| 74 | + |
| 75 | +You can download the latest release from [GitHub Releases](https://github.com/nookat-io/nookat/releases): |
15 | 76 |
|
16 | 77 | ## Development Setup |
17 | 78 |
|
18 | 79 | ### Prerequisites |
19 | 80 |
|
20 | 81 | - [Node.js](https://nodejs.org/) (v18 or higher) |
21 | 82 | - [Rust](https://rustup.rs/) (latest stable) |
22 | | -- [Docker](https://docker.com/) (for testing Docker functionality) |
23 | 83 |
|
24 | | -### Installation |
| 84 | +### Build from Source |
| 85 | + |
| 86 | +```bash |
| 87 | +# Clone the repository |
| 88 | +git clone https://github.com/nookat-io/nookat.git |
| 89 | +cd nookat |
| 90 | + |
| 91 | +# Install dependencies |
| 92 | +npm i |
25 | 93 |
|
26 | | -1. Clone the repository |
27 | | -2. Install dependencies: `just i` |
28 | | -3. Set up environment variables |
29 | | -4. Start development server: `just r` |
| 94 | +# Set up environment variables |
| 95 | +cp env.example .env |
| 96 | + |
| 97 | +# Start development server |
| 98 | +npm run tauri dev |
| 99 | +``` |
| 100 | + |
| 101 | +### Available Scripts |
| 102 | + |
| 103 | +- `npm run tauri dev` - Start Tauri development mode |
| 104 | +- `npm run build` - Build for production |
| 105 | + |
| 106 | +> **💡 Pro Tip**: Most of the convenient development scripts are available in the `justfile`. Check out `just --list` to see all available commands, or run `just` to see the most common ones. |
| 107 | +
|
| 108 | +## Architecture |
| 109 | + |
| 110 | +Nookat is built with a modern, cross-platform architecture: |
| 111 | + |
| 112 | +- **Frontend**: React with TypeScript and Tailwind CSS |
| 113 | +- **Backend**: Rust with Tauri |
| 114 | +- **Container Engine**: Colima an Lima as a container runtime |
| 115 | +- **Docker API**: bollard-rs for Docker daemon communication |
| 116 | + |
| 117 | +## Contributing |
| 118 | + |
| 119 | +We welcome contributions from the community! Here's how to get started: |
| 120 | + |
| 121 | +1. **Fork** the repository |
| 122 | +2. **Create** a new branch (`git checkout -b feature/YourFeature`) |
| 123 | +3. **Make** your changes |
| 124 | +4. **Commit** your changes (`git commit -am 'Add YourFeature'`) |
| 125 | +5. **Push** to the branch (`git push origin feature/YourFeature`) |
| 126 | +6. **Open** a Pull Request |
30 | 127 |
|
31 | 128 | ## Recommended IDE Setup |
32 | 129 |
|
33 | | -- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) |
| 130 | +- [VS Code](https://code.visualstudio.com/) with extensions: |
| 131 | + - [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) |
| 132 | + - [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) |
| 133 | + - [TypeScript Importer](https://marketplace.visualstudio.com/items?itemName=pmneo.tsimporter) |
| 134 | + |
| 135 | +## License |
| 136 | + |
| 137 | +Nookat is licensed under the [Apache License 2.0](LICENSE). |
| 138 | + |
| 139 | +## Acknowledgements |
| 140 | + |
| 141 | +- Built with [Tauri](https://tauri.app/), [React](https://reactjs.org/), and [Rust](https://www.rust-lang.org/), [bollard-rs](https://github.com/fussybeaver/bollard) |
| 142 | + |
| 143 | +## Community |
| 144 | + |
| 145 | +- **GitHub**: [nookat-io/nookat](https://github.com/nookat-io/nookat) |
| 146 | +- **Issues**: [Report bugs or request features](https://github.com/nookat-io/nookat/issues) |
| 147 | +- **Discussions**: [Join the community](https://github.com/nookat-io/nookat/discussions) |
| 148 | + |
| 149 | +## Support |
| 150 | + |
| 151 | +If you encounter any issues or have questions: |
| 152 | + |
| 153 | +1. Check the [GitHub Issues](https://github.com/nookat-io/nookat/issues) page |
| 154 | +2. Search existing discussions |
| 155 | +3. Create a new issue with detailed information |
| 156 | +4. Join our community discussions |
| 157 | + |
| 158 | +--- |
| 159 | + |
| 160 | +<div align="center"> |
| 161 | + |
| 162 | +**Made with ❤️ for the container community** |
| 163 | + |
| 164 | +</div> |
0 commit comments