Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

kur-archive/brook-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

brook-cli

Install

$ docker pull kurisux/brook-cli:latest

How to use

docker compose

version: '2.1'
services:
  brook0:
    image: kurisux/brook-cli:latest
    ports:
      - "yourMachinePort:containerPort" # like "1234:1234"
    restart: always
    command:
      - client
      - -l
      - 0.0.0.0:containerPort # like 0.0.0.0:1234
      - -i
      - 0.0.0.0
      - -s
      - serverIP:serverPort  # like "1.1.1.1:2333"
      - -p
      - yourPassword
      - --http
$ docker-compose up -d

docker cli

$ docker run -d -p yourMachinePort:containerPort \
    --restart always \
    --name brook-test1 \
    kurisux/brook-cli:latest \
    client \
    -l 0.0.0.0:containerPort \
    -i 0.0.0.0 \
    -s serverIP:serverPort  \
    -p yourPassword
    - --http

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published