This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$false)][String]$UserId, # AAD User Object Id | |
[Parameter(Mandatory=$false)][String]$UserName, # AAD User Name | |
[Parameter(Mandatory=$false)][String]$TenantName, #your primary domain or *.onmicrosoft.com domain | |
[Parameter(Mandatory=$false)][String]$CallQueueId, # Call Queue Id | |
[Parameter(Mandatory=$false)][ValidateSet("OptIn","OptOut")][String]$Action, | |
[Parameter(Mandatory=$false)][Switch]$QueryStatusOnly, | |
[Parameter(Mandatory=$false)][Switch]$MFA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
prestashop: | |
image: prestashop/prestashop | |
networks: | |
myprestashop: | |
ports: | |
- 8181:80 | |
links: | |
- mariadb:mariadb |