Can't do Port Forwarding for IPv6

I am running docker on linux Debian and can’t figure out how to do port forwarding via IPv6. I created my own network via:
network create --subnet=fe00:d7::/32 --gateway=fe00:d7::1 --ipv6 myipv6net

Then use the following to run my container:
docker run it -p 8080:80 -p 4430:443 -p 27015:8088 --net="myipv6net"

To see what my docker ports are I do (where 39e is the first letters of my running container):

443/tcp -> 0.0.0.0:4430
80/tcp -> 0.0.0.0:8080
8088/tcp -> 0.0.0.0:27015```

iptables --list
<img src="//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/docker/original/2X/a/a5ecb3dcaa5a2024eb4e173f82182c9f13008057.png" width="690" height="100">

How do I get these ports to also go over IPv6?

I think what I want is to have the dockerd option --bip accept IPv6 addresses.