-
Notifications
You must be signed in to change notification settings - Fork 6
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 #5 from KayeeNL/feature/Small_Fixes
Changed the dateformat to be yyyyMMdd_ + updated contributors
- Loading branch information
Showing
2 changed files
with
11 additions
and
6 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 |
---|---|---|
@@ -1,17 +1,22 @@ | ||
# sitecore-module-docker-asset-image-creator | ||
|
||
This repository contains a script to handle the auto creation of a Docker Asset Image for a given Sitecore module | ||
|
||
- Clone the repo to your working machine | ||
- Add the Sitecore module package to Package folder under root | ||
- Then invoke the script as shown in example below to convert it into scwdp (used for Azure PaaS) as well as extract the scwdp into a Module folder used for generating the docker image | ||
```powershell | ||
.\Create-SitecoreModule-DockerAssetImage.ps1 -ModulePackageName "Brightcove.Media.Framework-10.0.zip" | ||
``` | ||
- The folder name is generated based on the ModulePackageName provided while invoking the script and appends the current datetime stamp in `ModulePackageName_ddMMyyyyHHmmss` format | ||
```powershell | ||
.\Create-SitecoreModule-DockerAssetImage.ps1 -ModulePackageName "Brightcove.Media.Framework-10.0.zip" | ||
``` | ||
- The folder name is generated based on the ModulePackageName provided while invoking the script and appends the current datetime stamp in `ModulePackageName_yyyyMMdd_HHmmss` format | ||
- Run the docker file under Module folder to generate the image. The script only extracts it for CM role. For other roles, you have to manually create role specific docker files | ||
- Once the image is generated, push it to your container registry to share it with other devs in your team or devops for AKS deployment | ||
|
||
![image](https://user-images.githubusercontent.com/3968213/129932632-67ee772f-63da-421e-a476-dfe08635ca69.png) | ||
|
||
# Contributors | ||
|
||
Robbert Hock - Twitter: @kayeeNL, GitHub: https://github.com/KayeeNL | ||
Anton Tishchenko - Twitter: @ativn, GitHub: https://github.com/Antonytm | ||
Christopher Huemmer - Twitter: @chrishmmr, GitHub: https://github.com/chris-hmmr | ||
Venkata Phani Abburi - Twitter: @phani_abburi, GitHub: https://github.com/phaniav |