-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #450 from levinwinter/moby-buildkit-output
Custom Build Outputs `--output`
- Loading branch information
Showing
13 changed files
with
1,210 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
codegen/proto/resources/moby/filesync/v1/filesync.packet.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
syntax = "proto3"; | ||
|
||
package moby.filesync.v1; | ||
|
||
option go_package = "filesync"; | ||
|
||
import "fsutil/types/wire.proto"; | ||
|
||
// FileSync exposes local files from the client to the server. | ||
service FileSync{ | ||
rpc DiffCopy(stream fsutil.types.Packet) returns (stream fsutil.types.Packet); | ||
rpc TarStream(stream fsutil.types.Packet) returns (stream fsutil.types.Packet); | ||
} | ||
|
||
// FileSend allows sending files from the server back to the client. | ||
service FileSend{ | ||
rpc DiffCopy(stream fsutil.types.Packet) returns (stream fsutil.types.Packet); | ||
} | ||
|
||
// BytesMessage contains a chunk of byte data | ||
message BytesMessage { | ||
bytes data = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.