-
Notifications
You must be signed in to change notification settings - Fork 49
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
Documentation clairification #66
Comments
I would like to semi-close this issue as I have figured it out, but I ask that hopefully some of this info can hit your README.md
If this does not work for you 1- |
Hi, you can submit a PR with README changes and I'll be happy to consider incorporating them. I'd leave out the bottom lines, as most of that's already mentioned in the (already too long) README, but a working docker-compose example would be a good addition. Please be sure to include the right version at the top of the YAML. |
I don't know I use 2.4 for other issue because I'm just having issues
getting gpus exposed to Plex containers but that's completely unrelated to
this.
…On Mon, Dec 28, 2020, 7:38 AM Robbert Klarenbeek ***@***.***> wrote:
Hi, you can submit a PR with README changes and I'll be happy to consider
incorporating them. I'd leave out the bottom lines, as most of that's
already mentioned in the (already too long) README, but a working
docker-compose example would be a good addition. Please be sure to include
the right version at the top of the YAML.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#66 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKEIUFELRBRTVP5CW6ZR42TSXCX7VANCNFSM4VLVBA4A>
.
|
/etc/docker/daemon.json
Is this what you mean by "make sure your Docker daemon is started with --ipv6 and specifies a ULA range with --fixed-cidr-v6 (e.g. --fixed-cidr-v6 fd00:dead:beef::/48)"
My docker daemon on debian 10 with
docker network inspect bridge
showedIf so, could you make an example container compose stanza to bring up a your container and a nginx container with dual stack?
My issue with compose is
1- docker-compose down removes the user defined network
2- unsure how to instruct compose to create the network
docker network create --ipv6 --subnet fd00:dead:beef::/48 mynetwork
notes: my setup wont show ipv6 enabled for bridge for some reason. I dont know what to do to trigger it. I would like to have a user defined bridge as ipv6 and have that bridge created in compose.
Assuming my public IP (I have a /64, but my adapter assigns
2001:0db8:85a3:0000:0000:8a2e:0370:7334
(example address) as my host's IP. I want to put that in the DNS as a AAAA record and I want containers to be able to open ports on this IP address, specifically nginx container on port 80,443.Unfortunatally, my containers can reach ipv6 space if I run
docker network create --ipv6 --subnet fd00:dead:beef::/48 mynetwork
anddocker run --network mynetwork busybox ping ipv6.google.com
it will ping google on ipv6 space. However, if I run a webserver it will not expose the port if I pass -p 443:443 to both ipv6 and ipv4. It will expose the port to ipv4 space, but will remained closed on ipv6 space. This is a data center server, and has no firewall whatsoever. I am assigned publicly routable ipv6 netblocks. What am I doing wrong?docker ps
shows your container running and webserver running.
The text was updated successfully, but these errors were encountered: