Skip to content

An installation that uses Nix or Docker to deploy LLOneBot.

Notifications You must be signed in to change notification settings

LLOneBot/llonebot.nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

参考

chronocat.nix 若有侵权,请联系我删除

使用方法

docker

# VNC 端口 7081
# OneBot HTTP 端口 3000
docker run -p 3000:3000 -p 7081:7081 --privileged initialencounter/llonebot:latest

Nix

# flake.nix
{
  inputs = {
    llonebot.url = "github:LLOneBot/llonebot.nix";
  };

  outputs = { self, llonebot, ... }: {
    packages.default = llonebot.lib.buildLLOneBot ./configuration.nix;
  };
}
# configuration.nix
{ config, lib, pkgs, ... }:

{
  programs.llonebot = {
    port = 8080;                            # 设置 VNC 端口
    vncpasswd = "your-secure-password";     # 设置 VNC 密码
  };
}

登录

终端扫码

# 使用终端扫码登录
docker logs llonebot

VNC

使用 VNC 登录

About

An installation that uses Nix or Docker to deploy LLOneBot.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published