Sign in
Sign up
Explore
Enterprise
Education
Search
Help
Terms of use
About Us
Explore
Enterprise
Education
Gitee Premium
Gitee AI
AI teammates
Sign in
Sign up
Fetch the repository succeeded.
Open Source
>
Server Development
>
Docker
&&
Donate
Please sign in before you donate.
Cancel
Sign in
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
Watch
Unwatch
Watching
Releases Only
Ignoring
69
Star
157
Fork
37
helyho
/
JDocker
Code
Issues
0
Pull Requests
0
Wiki
Insights
Pipelines
Service
JavaDoc
Quality Analysis
Jenkins for Gitee
Tencent CloudBase
Tencent Cloud Serverless
悬镜安全
Aliyun SAE
Codeblitz
SBOM
DevLens
Don’t show this again
Releases
Latest
v1.0.2
38f3aad
2017-06-01 13:09
Compare
v1.0.2
helyho
####新增 - add: 增加CmdAuth.email设置 - add: 为 CmdNodeList, CmdServiceList 和 CmdVolumeList 增加 filters 的 label 过滤方法 ####优化 - imp: 优化Cmd.close 方法的空指针问题 add: 增加DockerHttpClient.connect的重载,增加 debug 参数 ####修复 - fix: connect 的 5 种重载形式为兼容 js 调整为 connect[参数格式]()的形式 - fix: 修复 label函数参数类型的问题 - fix: 修改日志提示的 HTTP 方法始终为 POST 的 bug
Last committed message:
v1.0.2
v1.0.1
3f6ff2d
2017-05-09 17:14
Compare
v1.0.1
helyho
####新增 - 增加为调用 connet 方法时异常的友好提示 fix: 修复 info.labels 的类型错误 helyho - HostConfig 增加 sysctls, storageOpt, pidMode, readonlyRootfs, shmSize, diskQuota, extraHosts, dnsSearch, dnsOptions, memorySwappiness属性 helyho - CmdContainerCreate增加 tty和 openStdin 函数 fix: CmdContainerKill修复 signal 函数参数类型的问题 imp: CmdServiceCreate优化restartPolicy函数 add: HostConfig 增加 diskQuota 和 logConfig 属性 add: 增加LogConfig类 helyho 2017/
Last committed message:
v1.0.1
v1.0
13789ad
2017-05-03 18:47
Compare
v1.0
helyho
####新增 - add: 增加VolumeDetail,CmdImageDetail,CmdVolumeList - add: CmdContainerDetail/ContainerDetail和CmdNetworkDetail/NetworkDetail用于采集容器和网络的详细信息 - add: ContainerStats 增加 onlineCpus - add: 增加CmdNetworkInfo - add: TaskTemplate增加 LogDriver - add: Info 增加 isolation add: HostConfig 增加 HealthCheck - add: 增加 cmdContainerAttach 流读取测试用例 - add: CmdContainerUpdate增加CmdContainerUpdate(ContainerInfo containerInfo)方法 - add: ServiceCreate 增加 TaskTemplate.Placement参数 - add: 增加镜像描述信息类ImageDetail - add: NetStats类用来保存网卡的信息 - add: CmdNodeList 返回的Node 的 Status 属性缺少 addr - add: Cmd类增加了 Connect 的三个重载 函数,用于连接 swarm 集群的各个节点 - add: 增加CmdContainerAttach命令支持 - add: 增加CmdContainerResize命令支持 - add: 增加容器的 Kill 支持 - add: 增加容器向容器内导入文件(CmdContainerArchiveGet)和从容器内导出文件(CmdContainerArchivePut)的支持 - add: 增加容器导出 Export 命令 ####优化 - imp: CmdServiceCreate.network 修改为多参数形式一次添加多个网络 - imp: 增加 CmdServiceCreate 对 mode 的设置 - imp: 增加 Exec 的 resize 命令支持 - imp: DockerHttpClient 增加直接发送方法 send 用于在 Exec 中发送指令 imp: 优化Cmd 的所有实现类的 send 方法,对结果result对象进行空值处理 - imp: 处理 CmdContainerLog 返回的数据中的特殊字符 ####BUG修复 - fix: 修复 CmdServiceCreate 的 mode 不生效的 bug - fix: 修复 CmdNetworkDetail 的 bug - fix: CmdContainerLogs信息排版的问题 - fix: 修复 org.voovan.docker.message.service.atom.Mode 中 setType 方法的 bug - fix: 修复ContainerStats解析网络流浪数据时网卡流量数据大于 int.maxvalue 后出现类型装换的错误 - fix: 修复因容器没有网络导致的在容器 view 页面出现空指针问题. - fix: 修改单元测试的 bug - fix: 只能读取eth0网卡上的数据,如果有多块网卡时,其他网卡的数据就没有读取到,这个问题已修复, 在ContainerStats 类中增加了 network<String,NetStats> 属性,这个属性用来保存每个网卡的信息. - fix: nanoCPUs 类型建议改成Long,nanoCpu乘以了10亿 2核以上的CPU就报错 - fix: 修复 HTTP请求异常的时候返回的 null 导致的饿空指针问题 - fix: Cmd对象 ajax发送过来的Unicode字符串无法被还原的问题 - fix:修改 Docker 的超时时间为3秒 - fix: 修复 CmdContainerStats 中命名的错误 - fix: 修复 CmdContainerLogs 的 tail 参数为字符串类型应为有all 这个参数
Last committed message:
更新 pom.xml 升级 maven 插件
v0.1.3
1eafa59
2017-01-24 17:12
Compare
v0.1.3
helyho
- 2017-01-22 增加对 Docker Api 1.25 的支持。 更新内容: POST /containers/create now takes AutoRemove in HostConfig, to enable auto-removal of the container on daemon side when the container’s process exits. DELETE /volumes/(name) now accepts a force query parameter to force removal of volumes that were already removed out of band by the volume driver plugin. POST /containers/create now takes a Mounts field in HostConfig which replaces Binds, Volumes, and Tmpfs. note: Binds, Volumes, and Tmpfs are still available and can be combined with Mounts. POST /containers/create The HostConfig field now includes NanoCPUs that represents CPU quota in units of 10-9 CPUs. POST /services/create and POST /services/(id or name)/update now accept the TTY parameter, which allocate a pseudo-TTY in container. POST /services/create and POST /services/(id or name)/update now accept the DNSConfig parameter, which specifies DNS related configurations in resolver configuration file (resolv.conf) through Nameservers, Search, and Options. GET /containers/json now supports a is-task filter to filter containers that are tasks (part of a service in swarm mode). POST /containers/create now takes StopTimeout field. POST /services/create and POST /services/(id or name)/update now accept Monitor and MaxFailureRatio parameters, which control the response to failures during service updates. POST /services/(id or name)/update now accepts a ForceUpdate parameter inside the TaskTemplate, which causes the service to be updated even if there are no changes which would ordinarily trigger an update. GET /networks/(name) now returns field Created in response to show network created time. POST /containers/(id or name)/exec now accepts an Env field, which holds a list of environment variables to be set in the context of the command execution. GET /exec/(id)/json now returns Pid, which is the system pid for the exec’d process. GET /images/json now support a reference filter POST /node/(id or name)/update now accepts both id or name to identify the node to update POST /containers/prune prunes stopped containers. POST /images/prune prunes unused images. POST /volumes/prune prunes unused volumes. POST /networks/prune prunes unused networks. 目前 DockerAPI 的/plugins 的更新还没有实际的使用,等年后研究一下,这个版本只是对原有 API 的升级. - 2016-12-05 完成 Docker Api 1.24 的支持。
Last committed message:
add: 增加对 Docker Api 1.25 的支持。
Download
To prevent Robot download, Please enter the captcha to continue
Cancel
Download
Java
1
https://gitee.com/helyho/JDocker.git
git@gitee.com:helyho/JDocker.git
helyho
JDocker
JDocker
Going to Help Center
Search
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register