ubuntu使用docker的Huginn上手记

参考:
https://www.xzymoe.com/docker-huginn-install/

https://github.com/huginn/huginn/blob/master/doc/docker/install.md
https://docs.docker.com/install/linux/docker-ce/ubuntu/

sudo apt-get remove docker docker-engine docker.io containerd runc
sudo apt-get -y install apt-transport-https ca-certificates curl

 sudo apt-get update
 
 sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common


国内源(参考:https://www.cnblogs.com/youran-he/p/9566059.html)
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) stable"
sudo apt install docker-ce

docker run -it -p 3000:3000 huginn/huginn
docker的加速:https://blog.csdn.net/xinshuzhan/article/details/78982265
 

4.启动Huginn

打开你的浏览器,输入

http://localhost:3000

用户名:admin,密码:password

发布了238 篇原创文章 · 获赞 144 · 访问量 86万+

猜你喜欢

转载自blog.csdn.net/u011331731/article/details/102876861
今日推荐