6

Getting error while running a docker container created by below file

FROM microsoft/iis

RUN mkdir C:\site

RUN powershell -NoProfile -Command \
    Import-module IISAdministration; \
    New-IISSite -Name "Site" -PhysicalPath C:\site -BindingInformation "*:8080:"

Add dist\ C:\site 

ENV COMPOSE_CONVERT_WINDOWS_PATHS = 1

EXPOSE 80

Then:

docker run -p 4000:80 app-temp1

ERROR ( message:Cannot find requested collection element. ) Applied configuration changes to section "system.applicationHost/applicationPools" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST"

Lex Li
  • 60,503
  • 9
  • 116
  • 147
rw1
  • 61
  • 1
  • 4

1 Answers1

1

According to this post, it is by design: https://github.com/Microsoft/aspnet-docker/issues/35

On a docker IIS, you can only use the default AppPool.

jonasm
  • 977
  • 1
  • 8
  • 14