收集整理个人常用的容器镜像,添加到portainer模板里,方便快速部署
提供两种模板方式,一种使用docker容器,一种使用docker stacks(compose)部署
-
容器 使用docker 桥接和host部署网络【机房专用】,不支持自动创建volume,不方便卷存储数据
-
stacks 使用自定义桥接或者macvlan网络【内网专用】,自动创建volume,方便卷存储数据
2.1 自定义桥接
docker network create -d bridge \ --subnet=10.21.1.0/24 \ --gateway=10.21.1.254 \ cbridge
2.2 macvlan网络
docker network create -d macvlan \ --subnet=172.19.0.0/24 \ --gateway=172.19.0.254 \ -o macvlan_mode=bridge \ -o parent=eth0 vlan
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
docker-1 | Registry | 5000 | Registry | 用于在portainer上便捷访问宿主机 |
docker-2 | portainer | 9000 9443 8000 | portainer | 用于创建宿主机docker图形化WEB管理界面 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
tools-1 | toolbox | 无 | base | 用于在portainer上便捷访问宿主机 |
tools-2 | speedtest | 80 | speedtest | 用于创建提供宿主机在线测试网速的小工具 |
tools-3 | vnstat | 80 | vnstat | 用于创建提供宿主机网络流量监视器,防止流量超额 |
tools-4 | iptables | 无 | iptables | 用于限制容器TCP最大连接数,最大带宽 |
tools-5 | netdata | 19999 | netdata | 用于创建提供宿主机性能监控工具 |
tools-6 | lg | 80 | looking-glass | 用于创建提供宿主机访问其他网络的小工具 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
cert-1 | amce | 无 | amce | 用于创建域名数字证书 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
xray-1 | xray | 443 88 | xray | 一键部署十三合一代理 |
xray-2 | XRAY:MULTI | 10801 20801 30801 | xray:multi | 站群服务器(多IP服务器)一键部署 |
xray-3 | x-ui | 54321 | x-ui | 一键部署xray图形化面板 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
gost-1 | https | 58338 | gost:https | 一键部署https代理,外贸首选 |
gost-2 | socks5 | 10021 | gost:s5 | 一键部署socks5代理,支持批量中转,提供加速接口 |
gost-3 | multi | 10021 | gost:multi | 一键部署gost动态IP代理 |
gost-4 | vpn-server | 4096 8421 | gost:vpn.server | 一键部署gost国内外隧道 |
gost-5 | vpn-client | 4096 8421 | gost:vpn.client | 一键部署gost国内外隧道 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
ssh-1 | webssh | 8888 | webssh | 一键部署webssh客户端,支持证书登录 |
ssh-2 | ttyd | 7681 | ttyd | 一键部署ttyd,支持rzsz文件传输 |
ssh-3 | next-terminal | 8088 | next-terminal | 一键部署下一代终端,支持ssh、rdp、vnc、telnet |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
vpn-1 | ovpn | 1723 1723 500 1701 4500 1194 5555 | softether | 一键部署 PPTP L2TP OPENVPN SSTP 服务器 |
vpn-2 | ovpn:multi | 1723 1723 500 1701 4500 1194 5555 | softether:multi | 一键部署 PPTP L2TP OPENVPN SSTP 服务器 |
序号 | 容器名称 | 默认端口 | 地址 | 备注 |
---|---|---|---|---|
RProxy-1 | nps:s | 80 443 8024 | nps:s | 一键部署NPS 内网穿透服务器 |
RProxy-2 | nps:c | 无 | nps:c | 一键部署NPS 内网穿透客户端 |
RProxy-3 | frp:s | 80 443 7500 | frp:s | 一键部署FRP 内网穿透服务器 |
RProxy-4 | frp:c | 无 | frp:c | 一键部署FRP 内网穿透客户端 |
RProxy-5 | ghproxy | 80 | ghproxy | 一键部署反向代理github |
RProxy-6 | npm | 80 81 443 | npm | 一键部署反向代理各类网站 |
RProxy-7 | cache-docker | 5000 | cache-docker | 一键部署反向代理hub.docker.com |
+V: Gsanjin01 记得注明来源