-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
175 additions
and
72 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,5 +1,19 @@ | ||
package main | ||
|
||
// CONT_PREFIX is the prefix string used for containers, images, and volumes. | ||
const CONT_PREFIX string = "skeg" | ||
|
||
// DOCKER_HUB_ORG is the name of the organization on Docker Hub where | ||
// predefined images can be found. | ||
const DOCKER_HUB_ORG string = "skegio" | ||
|
||
// ENVS_DIR is the directory in the user's homedir where data is created | ||
const ENVS_DIR string = "skegs" | ||
|
||
// IMAGE_VERSION defines image capabilities as defined by the BuildImage | ||
// function. When new capabilities are added to images, this number should be | ||
// incremented to force building a new user image on environment creation. | ||
// | ||
// version 0: user/tz creation | ||
// version 1: ssh key inclusion | ||
const IMAGE_VERSION int = 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
Oops, something went wrong.