From 33ffbd7c05d54e0f171c83c82c4b5254ac130eaa Mon Sep 17 00:00:00 2001 From: Survivalful Date: Mon, 23 Mar 2026 00:11:18 +0000 Subject: [PATCH] Delete README.md --- README.md | 81 ------------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 7754357..0000000 --- a/README.md +++ /dev/null @@ -1,81 +0,0 @@ -# 🐳 Discord Docker Monitor Bot - -A Discord bot that monitors your Docker containers and displays their status in dedicated channels — updated automatically every 30 seconds. - ---- - -## ✨ Features - -- 📋 List all Docker containers on your host -- 📁 Create groups of containers with dedicated Discord channels -- 🔄 Automatic status updates every 30 seconds -- 🟢 Live status indicators (running, exited, paused, created) -- 🔒 Channels are read-only for regular users - ---- - -## 🚀 Quick Start - -### 1. Create your `.env` file - -```env -BOT_TOKEN=your_discord_bot_token -DOCKER_HOST=tcp://your-docker-host:2375 -GUILD_ID=your_discord_server_id -dc_kategorie=Docker Status -``` - -### 2. Start with Docker Compose - -```yaml -services: - discord-bot: - image: yourusername/discord-docker-bot:latest - restart: unless-stopped - env_file: - - .env -``` - -```bash -docker compose up -d -``` - -That's it! 🎉 - ---- - -## 🤖 Commands - -| Command | Description | -|--------|-------------| -| `!info` | Shows all available commands | -| `!container_list` | Lists all containers on the host | -| `!group_create ...` | Creates a group with a dedicated channel | -| `!group_remove ` | Deletes a group and its channel | -| `!group_list` | Shows all existing groups | - ---- - -## 📊 Status Indicators - -| Symbol | Status | -|--------|--------| -| 🟢 | Running | -| 🔴 | Exited | -| 🟡 | Paused | -| ⚪ | Created | -| ❓ | Unknown | - ---- - -## ⚙️ Requirements - -- Docker & Docker Compose installed on the host -- Docker remote API enabled (`tcp://host:2375`) -- A Discord Bot Token ([create one here](https://discord.com/developers/applications)) - ---- - -## 🔒 Security Note - -Never share your `.env` file — it contains sensitive tokens and credentials. The `.env` file is not included in the Docker image. \ No newline at end of file