mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2026-03-04 00:01:12 -05:00
[Docker] AGH wizard interface cannot open on custom ports although container running #1900
Labels
No labels
P1: Critical
P2: High
P3: Medium
P4: Low
UI
bug
cannot reproduce
compatibility
dependencies
docker
documentation
duplicate
enhancement
enhancement
external libs
feature request
good first issue
help wanted
infrastructure
invalid
localization
needs investigation
performance
potential-duplicate
question
recurrent
research
snap
waiting for data
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/AdGuardHome#1900
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ghost on GitHub (Aug 25, 2020).
I cannot use port 3000 (it used by another instance) so i'm trying to use port like 3005, 3058. it doesn't work (connection refused).
docker run --name adguardhome -v /my/own/workdir:/opt/adguardhome/work -v /my/own/confdir:/opt/adguardhome/conf -p 53:53/tcp -p 53:53/udp -p 67:67/udp -p 68:68/tcp -p 68:68/udp -p 4050:4050/tcp -p 443:443/tcp -p 853:853/tcp -p 3005:3005/tcp -d adguard/adguardhome:edge80/tcp(note: if ran with port 4050(instead 80) and 3000) (80, 3000 ports written in dockerfile, it might be the reason)Expected Behavior
Works for any port.
Actual Behavior
Doesn't work and only support for port 3000
@ameshkov commented on GitHub (Aug 28, 2020):
Docker file has nothing to do with this.
You see, exposed ports just signal about which ports you can map and make available on your host machine, but there's no way we can restrict anything from inside the docker file.
Maybe it's occupied on your host machine?