# Sentinel单机
# 关键字说明
- 绿色字体代表已完成
- 红色字体代表待完成
# 实验明细
- 配置
- 运行
- 集成
# docker-compose.yaml
# 可参考 https://hub.docker.com/r/bladex/sentinel-dashboard
version: '3'
services:
minio:
image: registry.cn-shanghai.aliyuncs.com/odboy/ops:sentinel-dashboard-1.8.7
container_name: sentinel-dashboard-standalone
restart: unless-stopped
environment:
TZ: Asia/Shanghai
LANG: en_US.UTF-8
ports: # 映射端口
- "18858:8858" # web控制台
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# 账号密码
username -> sentinel
password -> sentinel
1
2
2