We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use a custom docker macvlan network and I'm trying to find where I can change the default port 8000 to 80, any help? thank you, amazing project
The text was updated successfully, but these errors were encountered:
I'm not sure about docker macvlan, but just re-map the port you want when you call your docker:
# The below maps the internal 8000 to your external port 8000 docker run --name apprise \ -p 8000:8000 \ -e PUID=$(id -u) \ -e PGID=$(id -g) \ -e APPRISE_STATEFUL_MODE=simple \ -e APPRISE_WORKER_COUNT=1 \ -v /etc/apprise:/config \ -d apprise/local:latest # What you're asking for is just a slight tweak to the same call: -p 80:8000 \ -e PUID=$(id -u) \ -e PGID=$(id -g) \ -e APPRISE_STATEFUL_MODE=simple \ -e APPRISE_WORKER_COUNT=1 \ -v /etc/apprise:/config \ -d apprise/local:latest
See here
Sorry, something went wrong.
thank you for joining @caronc, port mapping is not available with macvlan driver
No branches or pull requests
I use a custom docker macvlan network and I'm trying to find where I can change the default port 8000 to 80, any help? thank you, amazing project
The text was updated successfully, but these errors were encountered: