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.
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.