"Startup File" on Azure Docker Web App

Jacob Weimer picture Jacob Weimer · Nov 29, 2017 · Viewed 7.2k times · Source

Is the "Startup File" option on the docker web app options for docker-compose files? or shell commands? I cannot find any documentation for it...

Basically I'd like my Web App to run a docker-compose.yml instead of executing docker run [options] when I push an image to it.

Docker Startup File Option

Answer

Dillon Brown picture Dillon Brown · Jun 19, 2018

This is documented now, see below or click here.

What are the expected values for the Startup File section when I configure the runtime stack?

For Node.js, you specify the PM2 configuration file or your script file. For .NET Core, specify your compiled DLL name as dotnet <myapp>.dll. For Ruby, you can specify the Ruby script that you want to initialize your app with.