Sign inSign up

rubms/xsp4

By rubms

Updated over 6 years ago

Docker image containing mono and the XSP4 ASP.NET web server.

Image
2

2.5K

rubms/xsp4 repository overview

XSP4

Docker image containing mono and the XSP4 ASP.NET web server. The tags match the original mono version from which this image was created.

This Docker image will run whatever application is installed in the /app directory, in the 80 port.

In order to install your application you can either map a volume into the /app directory:

docker run -p 8080:80 -v <path to my web app>:/app rubms/xsp4

or create you own image via a Dockerfile, based on this image:

FROM    rubms/xsp4:latest
ADD     ./bin/ /app/bin
ADD     ./*.config /app/
ADD     ./*.asax /app/
ADD     ./wsdl /app/wsdl
ADD     ./*.asmx /app/

Tag summary

Content type

Image

Digest

Size

223.5 MB

Last updated

over 6 years ago

docker pull rubms/xsp4:6.6.0.161