-
Notifications
You must be signed in to change notification settings - Fork 789
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
IPv6 toggle or specifying distinct listening address #1601
Comments
How do you downgrade the server version? |
Recreate server container with same properties, but edit the image tag.
From `quay.io/outline/shadowbox:stable` to `quay.io/outline/shadowbox:v1.9.0`
|
It's work for me too. |
I created a bash script #!/bin/bash
export SB_IMAGE=quay.io/outline/shadowbox:v1.9.0 # version
export WATCHTOWER_REFRESH_SECONDS=2592000 # Watchtower refresh 90 days
curl -sSL https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh | bash I didn't have a file |
Same thing here. I have ipv6 completely disabled on my machine and found this issue only after rolling back to v1.9.0 manually. |
@NosikovSergey would you mind sharing |
@behrouzamiri here it is Image is controlled by watchtower, that's why it was updated without user interaction |
Thanks, @koshelevdk ! That did the trick! I saw in the Watchtower logs that it updated the Shadowbox image 4 hours ago, which led me here. The part of the I was able to simply downgrade the image to 1.9.0 and run a Docker command with the required arguments. It’s all good now! I also set Watchtower to update every month for safety, thanks to @FAR747 for pointing that out. notice that for outline manager to work, export SB_API_PREFIX=$(grep 'apiUrl' /opt/outline/access.txt | cut -d'/' -f4) |
Thanks for the report, folks. We're investigating and in the meantime are rolling back to v.1.9.0. |
This is the culprit: Probably solvable by using an empty host instead so the address reads as |
Just a quick update that we believe we have fixed the regression, but have been having trouble reliably reproducing the original problem. If anyone that ran into this issue on the previous version (the image with the bug is New release candidate image:
Thanks for your help! |
Works for me. Server starts fine. Thank you! |
Works for me. |
We have released v1.10.1 that has the fix. Please do let us know if you run into further issues with this. I'll leave this issue open to reflect the feature request to be able toggle it or specify distinct addresses. |
Since today, Outline server docker image enforce using IPv6 for some reason.
IPv6 is disabled in my kernel, so enforcing IPv6 does not let server to start with the following error:
Currently I have to downgrade to this image, which has no IPv6 enforcing:
quay.io/outline/shadowbox:v1.9.0
It would be nice to have an ability to specify desired listening address which will determine protocol to use. This will allow to leave both protocols enabled by default. Or whatever else to toggle IPv6.
The text was updated successfully, but these errors were encountered: