This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 316
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 #370 from crosbymichael/state
Ensure state is persisted
- Loading branch information
Showing
32 changed files
with
656 additions
and
280 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package configs | ||
|
||
type Mount struct { | ||
Type string `json:"type,omitempty"` | ||
Source string `json:"source,omitempty"` // Source path, in the host namespace | ||
Destination string `json:"destination,omitempty"` // Destination path, in the container | ||
Writable bool `json:"writable,omitempty"` | ||
Relabel string `json:"relabel,omitempty"` // Relabel source if set, "z" indicates shared, "Z" indicates unshared | ||
Private bool `json:"private,omitempty"` | ||
Slave bool `json:"slave,omitempty"` | ||
Type string `json:"type"` | ||
Source string `json:"source"` // Source path, in the host namespace | ||
Destination string `json:"destination"` // Destination path, in the container | ||
Writable bool `json:"writable"` | ||
Relabel string `json:"relabel"` // Relabel source if set, "z" indicates shared, "Z" indicates unshared | ||
Private bool `json:"private"` | ||
Slave bool `json:"slave"` | ||
} |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.