...
[REGISTRY/]sitecore-<TOPOLOGY>-<ROLE>[-VARIANT[-VARIANT]]:<SITECORE_VERSION>[-VARIANT_VERSION[-VARIANT_VERSION]]-<OS_REPOSITORY>-<OS_TAG>
| #define WIN32_LEAN_AND_MEAN | |
| #include <Windows.h> | |
| #include <TlHelp32.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <ctype.h> | |
| #include <string.h> | |
| #define printerr(e) (fprintf(stderr, e)) |
| #requires -Version 6 | |
| function Get-BranchName | |
| { | |
| $currentPath = Get-Location | |
| while ($true) | |
| { | |
| try | |
| { |
| version: '2.4' | |
| services: | |
| sql: | |
| image: sitecore-xm1-jss-11.0.1-sqldev:9.1.1-windowsservercore-ltsc2019 | |
| networks: | |
| xyzlan: | |
| volumes: | |
| - .\data\sql:C:\Data |
| # escape=` | |
| # Image with NET CORE installation to extract executables for final image | |
| FROM microsoft/aspnetcore:2.0.0-nanoserver As CoreBuild | |
| # Middleware image used to extract ASP.NET core module | |
| From microsoft/iis as WindowsBuild | |
| SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue'; $verbosePreference='Continue';"] | |
| # Installing NET CORE webhosting in middleware image so latest module and configuration schema is extracted for final image | |
| ADD https://download.microsoft.com/download/B/1/D/B1D7D5BF-3920-47AA-94BD-7A6E48822F18/DotNetCore.2.0.0-WindowsHosting.exe ".\hosting.exe" |
Yes - you can create a Kubernetes cluster with Raspberry Pis with the default operating system Raspbian. Carry on using all the tools and packages you're used to with the officially-supported OS.
| quick notes | |
| touch ssh | |
| nano wpa_supplicant.conf | |
| For Raspbian Jessie: | |
| network={ | |
| ssid="YOUR_SSID" |
| #paths to the project templates on your system | |
| $global:classTemplate = "D:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplatesCache\CSharp\Windows Root\Windows\1033\ClassLibrary\csClassLibrary.vstemplate" | |
| $global:webTemplate = "D:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplatesCache\CSharp\Web\1033\WebApplicationProject40\EmptyWebApplicationProject40.vstemplate" | |
| #variable used to store the path for the empty Habitat folder | |
| $global:helixPath ="" | |
| #empty variable used to store the solution name | |
| $global:solutionName = "" |
| using System; | |
| using System.Globalization; | |
| using System.Web; | |
| using Umbraco.Web.Routing; | |
| using Umbraco.Core; | |
| public class MultilingualContentFinder : IContentFinder | |
| { | |
| public bool TryFindContent(PublishedContentRequest contentRequest) | |
| { |