etcd UI 管理e3w 安装

我把自己的配置发上来

docker-compose.yml

version: '3'

services:
etcd:
image: soyking/etcd-goreman:3.2.7
ports:
- "2379:2379"
- "2380:2380"
- "22379:22379"
- "12380:12380"
- "22379:22379"
- "22380:22380"
environment:
- CLIENT_ADDR=192.168.0.104 //这里写上自己linux服务器IP
e3w:
image: soyking/e3w:latest
volumes:
- ./conf/config.default.ini:/app/conf/config.default.ini
ports:
- "8080:8080"
depends_on:
- etcd


第二个要修改的文件

config.default.ini
[app]
port=8080
auth=false

[etcd]
root_key=e3w_test
dir_value=
addr=192.168.0.104:2379,192.168.0.104:22379,192.168.0.104:32379 //这里修改自己IP
username=
password=
cert_file=
key_file=
ca_file=




posted on 2021-12-27 20:18  生在努力  阅读(525)  评论(0编辑  收藏  举报