mirror of
https://github.com/dockersrc/windows
synced 2026-06-24 20:01:03 -04:00
16 lines
379 B
PowerShell
16 lines
379 B
PowerShell
# PowerShell script for Windows container custom setup
|
|
# @Version: 202601231310-git
|
|
# @Author: CasjaysDev
|
|
# @Contact: CasjaysDev <docker-admin@casjaysdev.pro>
|
|
# @License: MIT
|
|
# @Copyright: Copyright 2026 CasjaysDev
|
|
# @File: 05-custom.ps1
|
|
# @Description: Script for custom configurations
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
$exitCode = 0
|
|
|
|
# Custom configuration here
|
|
|
|
exit $exitCode
|