开源笔记leanote的docker安装方法
关于安装自己的笔记应用 参考连接 安装说明 下载leanote Dockerfile leanote 是一个笔记平台,可以自己主机上使用 Leanote不仅仅是一个笔记 编译 git clone https://github.com/moenayuki/leanote-dockerfile.git && cd leanote-dockerfile docker build –tag=“leanote:1.0b2” . 准备工作 请修改配置文件 conf/app.conf,在下载目录里面 site.url app.secret 没有必要修改数据库的设置,他们在addUser.js和start.sh进行设置。如果你想要做更多的自定义,请查看这两文件并且修改 运行 docker run -v :/root/notedata -v :/root/leanote/conf -p :80 -d –name leanote leanote:1.0b2 已知问题 如果容器启动失败,你可以执行下面语句启动 docker start leanote 在一起的让容器启动. 想知道为什么. 如….