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