学习实践中收集的Docker容器应用

实际工作中因为个别测试和小需求,会使用的docker容器应用

Jumpserver

提起跳板机就会想到的应用服务

#端口8080,用于web访问前端管理
#端口2220,用于ssh访问实际使用跳板机
docker run -d -p 2220:2222 -p 8080:80 jumpserver/jms_all:latest
image.png

Grafana

对各种数据进行可视化的工具,很酷的应用服务,并提供大量丰富的插件

docker run -d --name=grafana -p 3000:3000 grafana/grafana
image.png

Zabbix api tool

zabbix api的可视化工具

docker run -p 8000:80 -d monitoringartist/zapix
image.png

Nextcloud

开源云盘应用,支持多平台终端和系统,Windows、Macos、Linux,桌面端和移动端

docker run -d -p 8800:80 nextcloud:latest
image.png

Rancher

企业容器管理平台,刚刚接触还不太明白如何使用

#稳定版
docker run -d --restart=unless-stopped -p 8080:8080 rancher/server:stable
#测试版
docker run -d --restart=unless-stopped -p 8080:8080 rancher/server:latest
image.png

你可能感兴趣的:(学习实践中收集的Docker容器应用)