Dennis Whitney
Dennis Whitney
Been a few years on this topic. Kind of curious if there was any ideas or designs proposed somewhere?
Sorry it's been so long since I've worked with this container, I don't remember much about it or which project I was using it for. I think in the end...
@djhvscf I've searched around trying to find an alternatives to x-editable and oddly there isn't any. Honestly its bizarre that no one has picked up the project as it seems...
So @wenzhixin has as blog post that was shared from a different thread as a bootstrap4 work around from a PR branch. This is something I've already tried earlier today...
I should also mention that the issue with datepicker for filter extension is broken even with this "work around". Its probably because the x-editable library overrides popper functions inside bootstrap....
https://gist.github.com/minsis/7706aba675e95172b404bac9ec394133 I wrote this sort of hack of a plugin for bootstrap-table. Its extremely specific to my use case. I'm not a javascript developer so its probably pretty crude but...
By default bridge networks dont forward to the outside world and need to have additional parameters set on the host for this to work correctly. https://docs.docker.com/network/bridge/#enable-forwarding-from-docker-containers-to-the-outside-world
@JustDevZero We also faced some of these issues (not with StackStorm) when ipv6 was enabled and ultimately disabled it. Do you also have ipv6 enabled?
@JustDevZero The network itself can have ipv6 disabled as a whole but that doesn't prevent localhost from having it enabled. Every device has its own link local ipv6 address when...
By default ipv4 forwarding is not enabled. This is mostly where the issue is with getting traffic to leave the container. Add `net.ipv4.ip_forward=1` to /etc/sysctl.conf to fix it.