This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into develop-add-aws-install
- Loading branch information
Showing
12 changed files
with
168 additions
and
740 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Updating latest `master` docker image | ||
|
||
To build and post the `master` docker image, run the following command: | ||
|
||
~~~ | ||
sh$ docker build docker -t hipas/gridlabd:latest | ||
sh$ docker push hipas/gridlabd:latest | ||
~~~ | ||
|
||
# Updating `develop` docker image | ||
|
||
To build and post the `develop` docker image, run the following command: | ||
|
||
~~~ | ||
sh$ docker build docker --build-arg BRANCH=develop -t hipas/gridlabd:develop | ||
sh$ docker push hipas/gridlabd:develop | ||
~~~ | ||
|
||
# Updating a personal branch docker image | ||
|
||
To build and post the `develop` docker image, run the following command: | ||
|
||
~~~ | ||
sh$ docker build docker --build-arg BRANCH=BRANCHNAME -t USERNAME/gridlabd:BUILDID | ||
sh$ docker push USERNAME/gridlabd:BUILDID | ||
~~~ | ||
|
||
where | ||
- `BRANCHNAME` is the branch you wish to build | ||
- `USERNAME` is your Dockerhub user id | ||
- `BUILDID` is a unique/sequential build identifier |
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
[[/GLM/Property/Timestamp]] -- Timestamp property | ||
|
||
# Synopsis | ||
|
||
GLM: | ||
|
||
~~~ | ||
class <class-name> { | ||
Timestamp <property-name>; | ||
} | ||
object <class-name> { | ||
<property-name> "<date-value>"; | ||
} | ||
~~~ | ||
|
||
# Description | ||
|
||
Timestamp properties can be specified in US, EU, ISO, and ISO 8601 formats, as indicated by the [[/Global/Dateformat]] variable. | ||
|
||
## ISO8601 | ||
|
||
The following ISO 8601 date/time formats are now supported for all timestamp value inputs: | ||
|
||
* `yyyy-mm-ddTHH:MM:SS[.SSSSSSSSS]Z` | ||
* `yyyy-mm-ddTHH:MM:SS[.SSSSSSSSS]{+,-}HH:MM` | ||
|
||
GridLAB-D does not currently support output in ISO 8601 format | ||
|
||
# See also | ||
|
||
* [[/Global/Dateformat]] |
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
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.