-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added docker support for development.
- Loading branch information
1 parent
3ca4d0b
commit 1a4dd89
Showing
8 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
REGISTRY= | ||
WINDOWSSERVERCORE_VERSION=ltsc2019 | ||
NANOSERVER_VERSION=1809 | ||
SITECORE_VERSION=9.3.0 | ||
SITECORE_LICENSE= | ||
SQL_SA_PASSWORD=6g3sSSfkkifINMaHN0m1iBpYqCIH6pnl721I0UGnkWzUhG1xzZW9GYoxOm0q4w4H | ||
TELERIK_ENCRYPTION_KEY=tE5juGvP4xwVyS28AZSBn5vUw6sXxGZjJGUTx44EZeR8aLSEGMwntUJaqDC5TA72 |
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 |
---|---|---|
|
@@ -69,4 +69,8 @@ bld/ | |
*.nuget.targets | ||
|
||
# Custom libs | ||
libs/**/*.dll | ||
libs/**/*.dll | ||
|
||
# Docker related files | ||
#data/* | ||
#deploy/* |
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,5 @@ | ||
Get-ChildItem -Path (Join-Path $PSScriptRoot "\data") -Directory | ForEach-Object { | ||
$dataPath = $_.FullName | ||
|
||
Get-ChildItem -Path $dataPath -Exclude ".gitkeep" -Recurse | Remove-Item -Force -Recurse -Verbose | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
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,62 @@ | ||
version: "2.4" | ||
|
||
services: | ||
sql: | ||
image: ${REGISTRY}sitecore-xm-sqldev:${SITECORE_VERSION}-windowsservercore-${WINDOWSSERVERCORE_VERSION} | ||
volumes: | ||
- .\data\sql:C:\Data | ||
mem_limit: 2GB | ||
ports: | ||
- "44010:1433" | ||
environment: | ||
SA_PASSWORD: ${SQL_SA_PASSWORD} | ||
ACCEPT_EULA: "Y" | ||
|
||
solr: | ||
image: ${REGISTRY}sitecore-xm-solr:${SITECORE_VERSION}-nanoserver-${NANOSERVER_VERSION} | ||
volumes: | ||
- .\data\solr:C:\Data | ||
mem_limit: 1GB | ||
ports: | ||
- "44011:8983" | ||
environment: | ||
SOLR_LOG_LEVEL: ERROR | ||
|
||
cm: | ||
image: ${REGISTRY}sitecore-xm-cm:${SITECORE_VERSION}-windowsservercore-${WINDOWSSERVERCORE_VERSION} | ||
entrypoint: powershell.exe -Command "& C:\\tools\\entrypoints\\iis\\Development.ps1 -WatchDirectoryParameters @{ Path = 'C:\\src'; Destination = 'C:\\inetpub\\wwwroot'; }" | ||
ports: | ||
- "44001:80" | ||
- "44024:4024" | ||
volumes: | ||
- .\deploy:C:\src | ||
- .\data\cm:C:\inetpub\wwwroot\App_Data\logs | ||
- C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\Remote Debugger:C:\remote_debugger:ro | ||
networks: | ||
default: | ||
aliases: | ||
- sweep.dev.local | ||
environment: | ||
HOST_HEADER: sweep.dev.local | ||
SITECORE_LICENSE: ${SITECORE_LICENSE} | ||
SITECORE_APPSETTINGS_ROLE:DEFINE: ContentManagement, Indexing | ||
SITECORE_CONNECTIONSTRINGS_CORE: Data Source=sql;Initial Catalog=Sitecore.Core;User ID=sa;Password=${SQL_SA_PASSWORD} | ||
SITECORE_CONNECTIONSTRINGS_SECURITY: Data Source=sql;Initial Catalog=Sitecore.Core;User ID=sa;Password=${SQL_SA_PASSWORD} | ||
SITECORE_CONNECTIONSTRINGS_MASTER: Data Source=sql;Initial Catalog=Sitecore.Master;User ID=sa;Password=${SQL_SA_PASSWORD} | ||
SITECORE_CONNECTIONSTRINGS_WEB: Data Source=sql;Initial Catalog=Sitecore.Web;User ID=sa;Password=${SQL_SA_PASSWORD} | ||
SITECORE_CONNECTIONSTRINGS_EXPERIENCEFORMS: Data Source=sql;Initial Catalog=Sitecore.ExperienceForms;User ID=sa;Password=${SQL_SA_PASSWORD} | ||
SITECORE_CONNECTIONSTRINGS_SOLR.SEARCH: http://solr:8983/solr | ||
SITECORE_APPSETTINGS_TELERIK.ASYNCUPLOAD.CONFIGURATIONENCRYPTIONKEY: ${TELERIK_ENCRYPTION_KEY} | ||
SITECORE_APPSETTINGS_TELERIK.UPLOAD.CONFIGURATIONHASHKEY: ${TELERIK_ENCRYPTION_KEY} | ||
SITECORE_APPSETTINGS_TELERIK.WEB.UI.DIALOGPARAMETERSENCRYPTIONKEY: ${TELERIK_ENCRYPTION_KEY} | ||
ENTRYPOINT_STDOUT_IIS_ACCESS_LOG_ENABLED: 'false' | ||
ENTRYPOINT_STDOUT_IIS_ERROR_LOG_ENABLED: 'false' | ||
ENTRYPOINT_STDOUT_SITECORE_LOG_ENABLED: 'true' | ||
depends_on: | ||
- sql | ||
- solr | ||
|
||
networks: | ||
default: | ||
external: | ||
name: nat |