HFish/docs/2-2-docker.md

31 lines
736 B
Markdown
Raw Normal View History

Docker是我们推荐的蜜罐交付方式。而且因为容器环境本身就有一层权限隔离的原因合理配置过的Docker运行环境能获得更高的业务安全性。
2021-08-02 17:56:47 +08:00
当前我们只提供Linux amd64版本的docker镜像
> Linux amd64 Docker镜像的下载
```shell
docker pull dskyz/hfish:latest
```
> 镜像的运行
```shell
docker run -d -p 4433:4433 -p 4434:4434 --name=hfish --restart=always dskyz/hfish:latest
```
如果控制端的ip是192.168.1.1登陆链接为https://192.168.1.1:4433/web/
2021-08-09 17:35:03 +08:00
> 登陆web界面
```
登陆链接https://[ip]:4433/web/
2021-08-09 17:35:03 +08:00
账号admin
密码HFish2021
```
如果控制端的ip是192.168.1.1登陆链接为https://192.168.1.1:4433/web/
2021-08-09 17:35:03 +08:00
2021-08-25 10:59:08 +08:00
2021-08-02 17:56:47 +08:00