Remake Repository

This commit is contained in:
arch3rPro
2025-06-30 23:37:03 +08:00
parent d593e04bd7
commit e98d0faf79
420 changed files with 55489 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# DockerCopilot
## 介绍
一个主打便捷的docker容器管理工具现在已经支持所有平台。
已经实现:
1. 一键更新容器
2. 指定镜像和tag更新
3. 启动、停止、重启容器
4. 重命名容器
5. 删除无TAG镜像
6. 删除未使用镜像
7. 更新进度查看
8. 备份容器设置
9. 恢复容器设置
## 开发环境
go版本1.21+

View File

@@ -0,0 +1,22 @@
name: Docker-Copilot
tags:
- 实用工具
title: DockerCopilot
description: docker容器管理工具
additionalProperties:
key: docker-copilot
name: Docker-Copilot
tags:
- Tools
shortDescZh: 一键更新容器
shortDescEn: DockerCopilot Application
description:
zh: 便捷的docker容器管理工具。
en: DockerCopilot is a convenient docker container management tool.
type: website
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://github.com/onlyLTY/dockerCopilot
github: https://github.com/onlyLTY/dockerCopilot
document: https://github.com/onlyLTY/dockerCopilot

View File

@@ -0,0 +1,19 @@
additionalProperties:
formFields:
- default: "12712"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Service Port 12712
labelZh: 服务端口 12712
required: true
rule: paramPort
type: number
- default: "copilot"
edit: true
envKey: SECRET_KEY
labelEn: secretKey
labelZh: 密码,不少于八位且非纯数字
random: true
required: true
rule: paramComplexity
type: password

View File

@@ -0,0 +1,21 @@
services:
dockercopilot:
image: 0nlylty/dockercopilot:latest
container_name: ${CONTAINER_NAME}
restart: always
ports:
- ${PANEL_APP_PORT_HTTP}:12712
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
networks:
- 1panel-network
environment:
- TZ=Asia/Shanghai
- DOCKER_HOST=unix:///var/run/docker.sock
- secretKey=${SECRET_KEY}
labels:
createdBy: Apps
networks:
1panel-network:
external: true

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB