Question: Using the code below as a starting point, fill in the function body to do the following things. The function should accept two arguments. The

Using the code below as a starting point, fill in the function body to do the following things.

The function should accept two arguments. The first will be the name of a new container to create and the second should be the IP address of that container. After you have filled in the missing pieces in the function body, you should be able to run the script and then see that a new container with the name test and the IP address 172.16.31.254.

Name the file container.ps1

function Create-Container { param( [string]$network, [string]$containerName ) # Use the parameters above to create a container using docker  } # Call the function to create a container Create-Container -network "172.16.31.20" -containerName "function"

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!