Hey, Tom. Thanks for the awesome tutorial! I've found this package from the YouTube video. I cloned the repo and I tried running the
sudo docker build -t julia-lambda:latest . && sudo docker run -it --rm -p 9000:8080 julia-lambda:latest
The building part seems to work, but when I try to run the run part I get the following error:
docker: Error response from daemon: driver failed programming external connectivity on endpoint silly_goldstine (dd5a05f3ad78ec34509a38283a046e8011c9e852e24171a98f8437e3f792142c): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 9000 -j DNAT --to-destination 172.17.0.2:8000 ! -i docker0: iptables v1.8.7 (nf_tables): unknown option "--dport"
Try `iptables -h' or 'iptables --help' for more information.
(exit status 2)).
Any idea on what might be going on?