This repository contains example compose files and associated configuration that we use internally at Konbabos Consulting. It is loosely based off the original Docker Examples repo - be sure to look through that repo and read the documentation provided there.
The examples contained in this repo were designed to allow us to quickly get up and running on a project or just for personal hacking and intended for local development purposes.
Some features:
- Folder based license mount. Simply copy your
license.xml
file to the license folder - Removed build of layers which were not changed from default images
- Generation of SSL certs for Traefik if they do not exist
start.ps1
andstop.ps1
scripts to bring environments up/down, which allows tabbed completion in a Powershell terminal and to run other commands- Allow user specific override of environment variables
- Modified
clean.ps1
allowing you to remove files without deleting databases - Removed the need to modify the
hosts
file by using domain which provides a local loopback
Each topology is designed to work in isolation. To start using a topology on a project, we can simply copy the entire folder without having to worry about files in multiple folders.
- Copy your
license.xml
file to the./docker/license
folder of topology of your choice - Run
start.ps1
- First time you may be prompted to install a root certificate authority (CA) certificate. This is required by mkcert to allow local SSL certs to be used without warnings and errors. Click yes to install the certificate.
We default a bunch of settings and environment variables. For hacking purposes you probably don't care what these are locally. You can regenerate them all:
./docker/tools/init.ps1 -HostName myhost
Parameter | Alias | Default |
---|---|---|
HostName | h | - |
HostSuffix | s | localho.st |
SitecoreAdminPassword | a | b |
SqlSaPassword | sa | Password12345 |
We default the host suffix to localho.st, which provides a local loopback to 127.0.0.1 and means that no modifications are required to your hosts files, either manually or using additional containers.
Modification of the hosts
files can also be in issue in certain organisations which prevent due to group policy or mandatory use of certain virus scanners such as Symantec Endpoint Security which prevent modification for security reasons.
The set up is for simplicity. Deploy your files to ./docker/data/cm/website
folder.
This is very similar to how the Sitecore 9.3 Community Repository was configured. We do not have volume mounts for XConnect, feel free to add them if you them.
The clean.ps1
is a modified version from the original repo and uses git clean to remove files from the data folder.
By default, mdf/ldf database files are not removed. You can force deletion by passing the -IncludeDatabases
flag (Alias -i
).
You can override the variables from .env
on a per user basis. Copy.env.user.example
to .env.user
and modify the values as required.
The Sitecore 10 examples use the official Sitecore Container Registry.
The Sitecore 9.3 example requires you to build your own images. The default Registry
setting in the .env
files is pointing to an internal Konabos container registry. This will not work for you. Update the value as required after you have build the Sitecore 9.3 images.