1、创建sentinel-docker目录
mkdir sentinel-docker
2、创建sentinel.yml文件
version: '3'
services:
sentinel-dashboard:
image: bladex/sentinel-dashboard
container_name: sentinel-dashboard
restart: always
environment:
JAVA_OPTS: "-Dserver.port=8858 -Dcsp.sentinel.dashboard.server=localhost:8858 -Dproject.name=sentinel-dashboard"
ports: #避免出现端口映射错误,建议采用字符串格式 8080端口为Dockerfile中EXPOSE端口
- "8858:8858"
volumes:
- ./root/logs:/root/logs
3、执行安装部署
docker-compose -f sentinel.yml up -d
4、访问web
创建成功后,可通过访问localhost:58080访问sentinel-dashboard的web界面。至此,sentinel-dashboard安装完成。
网友评论