Logic App in Docker
Hi ,
i am trying to pish a Logic App into the Docker. i created Docker file below
FROM mcr.microsoft.com/azure-functions/node:3.0
ENV AzureWebJobsStorage=XXXX
ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true \
FUNCTIONS_V2_COMPATIBILITY_MODE=true \
WEBSITE_HOSTNAME=localhost
COPY . /home/site/wwwroot
RUN cd /home/site/wwwroot
I used a new storage account, haven't used the one which we used for LA Standard
When i run the docker and go into the storage account to find the callbackURL, I only see the Log Container in it. i don't see the other containers.
Can you Please help me with it what i am doing wrong?
Thanks,
Sujith.