How to use Docker Container "adguard/adguardhome" with Azure App Service

Cory Banks 1 Reputation point
2021-10-02T11:47:09.27+00:00

Hello,
is it possible to use "adguard/adguardhome" with Azure App Service since it's a docker instance.

I tried and got application error
Do you need to change something?

Azure Container Instances
Azure Container Instances
An Azure service that provides customers with a serverless container experience.
700 questions
Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
230 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ryan Hill 28,106 Reputation points Microsoft Employee
    2021-10-04T06:11:18.837+00:00

    I looked at AdGuardHome's Docker docs after reviewing app service log files. After the image is pulled, port 80 is bound to port 3118 which isn't on the port list the doc. I'm not too familiar with the AdGuard itself but you can try creating your own image based off AdGuard's which exposes port 3000, something like:

    FROM adguard:latest
    
    EXPOSE 3000
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.