cDockerDSC.psd1

@{
    RootModule           = 'cDockerDSC.psm1'
    DscResourcesToExport = @('DockerDSC')

    # Version number of this module.
    ModuleVersion        = '0.0.1'

    # ID used to uniquely identify this module
    GUID                 = '83D2B6B2-8855-4C1F-A6B1-725D60E3E7E8'

    # Author of this module
    Author               = 'Yang Xinyun'

    # Company or vendor of this module
    CompanyName          = 'Yang Xinyun'

    # Copyright statement for this module
    Copyright            = '(c) 2021 Yang Xinyun. All rights reserved.'

    # Description of the functionality provided by this module
    Description          = 'Powershell DSC Resource to install Docker for Windows on Windows Server
                            Credits to Cornelius Schuchardt. This is a improvement based on his work.'


    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion    = '5.1'

    PrivateData          = @{

        PSData = @{
    
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags                     = @('DSC', 'Docker')
    
            # A URL to the license for this module.
            # LicenseUri = ''
    
            # A URL to the main website for this project.
            ProjectUri               = 'https://github.com/yangxinyun/cDscDocker'
    
            # A URL to an icon representing this module.
            IconUri                  = 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcST90O85gQQy7UV-c3wPkxwoTBHe1TL00bEFWeJdYRAKayWUSwltM2pbqAL-qHZjFHaoEg&usqp=CAU'
    
            # ReleaseNotes of this module
            # ReleaseNotes = ''
    
            # Prerelease string of this module
            # Prerelease = ''
    
            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            RequireLicenseAcceptance = $false
    
            # External dependent modules of this module
            # ExternalModuleDependencies = @()
    
        } # End of PSData hashtable
    
    }

}