{"id":13582607,"url":"https://github.com/qfdk/EasyDockerWeb","last_synced_at":"2025-04-06T14:31:06.554Z","repository":{"id":30392589,"uuid":"124775772","full_name":"qfdk/EasyDockerWeb","owner":"qfdk","description":"A simple Web Ui for Docker using xterm.js, Node.js, dockerode and Socket.io","archived":false,"fork":false,"pushed_at":"2024-10-07T22:21:50.000Z","size":2330,"stargazers_count":409,"open_issues_count":0,"forks_count":117,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-11-05T22:41:53.559Z","etag":null,"topics":["docker","docker-admin","hacktoberfest","portainer","react","socket","terminal","webconsole","webui"],"latest_commit_sha":null,"homepage":"https://ko-fi.com/qfdko","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qfdk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-11T16:26:18.000Z","updated_at":"2024-10-27T08:16:28.000Z","dependencies_parsed_at":"2023-02-10T06:30:44.798Z","dependency_job_id":"e9ec7019-78b4-4122-bde5-7822c80659ea","html_url":"https://github.com/qfdk/EasyDockerWeb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qfdk%2FEasyDockerWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qfdk%2FEasyDockerWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qfdk%2FEasyDockerWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qfdk%2FEasyDockerWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qfdk","download_url":"https://codeload.github.com/qfdk/EasyDockerWeb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247495800,"owners_count":20948110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-admin","hacktoberfest","portainer","react","socket","terminal","webconsole","webui"],"created_at":"2024-08-01T15:02:52.634Z","updated_at":"2025-04-06T14:31:06.548Z","avatar_url":"https://github.com/qfdk.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","HTML"],"sub_categories":[],"readme":"# EasyDockerWeb\n\nA simple Web UI for Docker using `xterm.js`, `Node.js` and `Socket.io`.\n\nWith this solution you will be able to create your own SAS service.\n\nFeatures:\n- Container management (create, delete, start, stop)\n- Interactive terminal\n- Log viewer\n- System status monitoring\n- Image search and pull\n- Simple authentication\n\n## Quick Start\n\n### Method 1: Using build script (Recommended)\n```bash\ngit clone https://github.com/qfdk/EasyDockerWeb.git\ncd EasyDockerWeb\nchmod +x build.sh\n./build.sh\n```\n\n### Method 2: Manual deployment\n```bash\n# Build the image\ndocker build -t easy-docker-web .\n\n# Run the container\ndocker run -d \\\n  --name easy-docker-web \\\n  -p 3000:3000 \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  easy-docker-web\n```\n\nAccess the web interface at [http://localhost:3000](http://localhost:3000)\n\nDefault credentials: **admin/admin**\n\nYou can customize the username and password by setting environment variables:\n```bash\ndocker run -d \\\n  --name easy-docker-web \\\n  -p 3000:3000 \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  -e EDW_USERNAME='your_username' \\\n  -e EDW_PASSWORD='your_password' \\\n  easy-docker-web\n```\n\n## Requirements\n\n- Docker Engine with Remote API \u003e= v1.24\n- Linux, macOS, or Windows with Docker installed\n\n## Development Mode\n\n```bash\ngit clone https://github.com/qfdk/EasyDockerWeb.git\ncd EasyDockerWeb\npnpm install\npnpm start\n```\n\n## 中文说明\n\n简单的 docker 管理程序，使用了 express socket.io 来实现前后端通讯。\n\n功能特点：\n- 容器增删改查\n- 容器交互终端\n- 日志查看\n- 系统状态监控\n- 镜像搜索和拉取\n- 简单的身份验证\n\n### 快速开始\n\n#### 方式一：使用构建脚本（推荐）\n```bash\ngit clone https://github.com/qfdk/EasyDockerWeb.git\ncd EasyDockerWeb\nchmod +x build.sh\n./build.sh\n```\n\n#### 方式二：手动部署\n```bash\n# 构建镜像\ndocker build -t easy-docker-web .\n\n# 运行容器\ndocker run -d \\\n  --name easy-docker-web \\\n  -p 3000:3000 \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  easy-docker-web\n```\n\n访问地址：[http://localhost:3000](http://localhost:3000)\n\n默认账号密码：**admin/admin**\n\n## Images\n![login](./images/login.png)\n\n![overview](./images/overview.png)\n\n![terminal](./images/terminal.png)\n\n![newContainer](./images/newContainer.png)\n\n![containers](./images/containers.png)\n\n![images](./images/images.png)\n\n![pull](./images/pull.png)\n\n![pull2](./images/pull2.png)\n\n## Sponsor\n\u003ca href=\"https://www.jetbrains.com/?from=EasyDockerWeb\"\u003e\u003cimg src=\"images/jetbrains-variant-4.svg\" alt=\"JetBrains\" width=\"200\"/\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqfdk%2FEasyDockerWeb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqfdk%2FEasyDockerWeb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqfdk%2FEasyDockerWeb/lists"}