I'm

技术分享

  • April 22, 2021 1Bit

    TTYD网页终端参数说明。

    ttyd is a tool for sharing terminal over the web

    USAGE:
    ttyd [options] []

    VERSION:
    1.6.3

    OPTIONS:
    -p, --port Port to listen (default: 7681, use `0` for random port)
    -i, --interface Network interface to bind (eg: eth0), or UNIX domain socket path (eg: /var/run/ttyd.sock)
    -c, --credential Credential for Basic Authentication (format: username:password)
    -u, --uid User id to run with
    -g, --gid Group id to run with
    -s, --signal Signal to send to the command when exit it (default: 1, SIGHUP)
    -a, --url-arg Allow client to send command line arguments in URL (eg: http://localhost:7681?arg=foo&arg=bar)
    -R, --readonly Do not allow clients to write to the TTY
    -t, --client-option Send option to client (format: key=value), repeat to add more options
    -T, --terminal-type Terminal type to report, default: xterm-256color
    -O, --check-origin Do not allow websocket connection from different origin
    -m, --max-clients Maximum clients to support (default: 0, no limit)
    -o, --once Accept only one client and exit on disconnection
    -B, --browser Open terminal with the default system browser
    -I, --index Custom index.html path
    -b, --base-path Expected base path for requests coming from a reverse proxy (eg: /mounted/here, max length: 128)
    -P, --ping-interval Websocket ping interval(sec) (default: 300)
    -6, --ipv6 Enable IPv6 support
    -S, --ssl Enable SSL
    -C, --ssl-cert SSL certificate file path
    -K, --ssl-key SSL key file path
    -A, --ssl-ca SSL CA file path for client certificate verification
    -d, --debug Set log level (default: 7)
    -v, --version Print the version and exit
    -h, --help Print this text and exit

  • May 07, 2017 1Bit

    Docker run 参数说明。

    docker run :创建一个新的容器并运行一个命令

    语法:
    docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
    OPTIONS说明:

    -a stdin: 指定标准输入输出内容类型,可选 STDIN/STDOUT/STDERR 三项;

    -d: 后台运行容器,并返回容器ID;

    -i: 以交互模式运行容器,通常与 -t 同时使用;

    -P: 随机端口映射,容器内部端口随机映射到主机的端口

    -p: 指定端口映射,格式为:主机(宿主)端口:容器端口

    -t: 为容器重新分配一个伪输入终端,通常与 -i 同时使用;

    --name="nginx-lb": 为容器指定一个名称;

    --dns 8.8.8.8: 指定容器使用的DNS服务器,默认和宿主一致;

    --dns-search example.com: 指定容器DNS搜索域名,默认和宿主一致;

    -h "mars": 指定容器的hostname;

    -e username="ritchie": 设置环境变量;

    --env-file=[]: 从指定文件读入环境变量;

    --cpuset="0-2" or --cpuset="0,1,2": 绑定容器到指定CPU运行;

    -m :设置容器使用内存最大值;

    --net="bridge": 指定容器的网络连接类型,支持 bridge/host/none/container: 四种类型;

    --link=[]: 添加链接到另一个容器;

    --expose=[]: 开放一个端口或一组端口;

    --volume , -v: 绑定一个卷

  • April 12, 2017 1Bit

    Docker start/stop/restart 命令。

    docker start :启动一个或多个已经被停止的容器

    docker stop :停止一个运行中的容器

    docker restart :重启容器

    语法
    docker start [OPTIONS] CONTAINER [CONTAINER...]
    docker stop [OPTIONS] CONTAINER [CONTAINER...]
    docker restart [OPTIONS] CONTAINER [CONTAINER...]
    实例
    启动已被停止的容器myrunoob

    docker start myrunoob
    停止运行中的容器myrunoob

    docker stop myrunoob
    重启容器myrunoob

    docker restart myrunoob

生活记录

Copyright © 2009-2021 1Bit, All rights reserved.

勉勉强强已运行: