Skip to content

Commit

Permalink
Added docker support for development.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKasaku committed Jan 13, 2020
1 parent 3ca4d0b commit 1a4dd89
Show file tree
Hide file tree
Showing 8 changed files with 79 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .env
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,8 @@ bld/
*.nuget.targets

# Custom libs
libs/**/*.dll
libs/**/*.dll

# Docker related files
#data/*
#deploy/*
5 changes: 5 additions & 0 deletions Clean-Data.ps1
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 added data/cm/.gitkeep
Empty file.
Empty file added data/solr/.gitkeep
Empty file.
Empty file added data/sql/.gitkeep
Empty file.
Empty file added deploy/.gitkeep
Empty file.
62 changes: 62 additions & 0 deletions docker-compose.yml
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

0 comments on commit 1a4dd89

Please sign in to comment.