-
-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
Binding to another port? #10
Comments
Maybe this might work for you? # Bind the internal port 8000 in the container to 9000 on your local machine
docker run --name apprise \
-p 9000:8000 \
-v /var/lib/apprise/config:/config \
-d caronc/apprise:latest Or are you installing the repository locally onto your machine and not using Docker at all? Here is the # binding to a different port using the manage.py command
./manage.py runserver 0.0.0.0:9000 Edit: added |
I am running it in Docker, testing it now, many thanks. By the way, I look at the services you already support and the list is stunning! |
Thank you for your praise. If you can think of any notification services I don't support that you'd like to see, I'm always up for the challenge of trying to add it! 🙂 With respect to this ticket: by all means let me know if what I suggested doesn't work. Good luck! Chris |
It seems to be running but I am getting the following, let me dig into this later today. |
Hi @mattpackwood that's strange because that's really all there is to it. Is it possible there is a (software) firewall enabled on your Raspberry pi device that has port 9000 closed from the computer you're accessing it on? If you actually ssh to the Raspberry pi, can you see if the port is listening at least correctly?
|
I have a docker-compose error I missed. I am going to have a go at rebuilding that from source and see where I end up. |
Okay :) good luck! I'll leave this ticket open all the same. Let me know how it all goes! |
All sorted, I was having issues with docker-compose (I had to remove and re-install it). |
is there a way to bind to another port (I have 8000 committed to a different application)?
The text was updated successfully, but these errors were encountered: