github.com/ilhicas/nomad@v0.11.8/drivers/docker/docklog/proto/docker_logger.proto (about)

     1  syntax = "proto3";
     2  package hashicorp.nomad.drivers.docker.docklog.proto;
     3  option go_package = "proto";
     4  
     5  service DockerLogger {
     6      rpc Start(StartRequest) returns (StartResponse) {}
     7      rpc Stop(StopRequest) returns (StopResponse) {}
     8  }
     9  
    10  message StartRequest {
    11      string endpoint = 1;
    12      string container_id = 2;
    13      string stdout_fifo = 3;
    14      string stderr_fifo = 4;
    15      string tls_cert = 5;
    16      string tls_key = 6;
    17      string tls_ca = 7;
    18      bool tty = 8;
    19  }
    20  
    21  message StartResponse {
    22  }
    23  
    24  message StopRequest {}
    25  
    26  message StopResponse {}