all firewalls are disabled and my iptables rules look like this:
root@api ~/appwrite # iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
ACCEPT all -- anywhere 172.19.0.0/16
ACCEPT all -- 172.19.0.0/16 anywhere
ACCEPT all -- 172.19.0.0/16 anywhere
ACCEPT all -- anywhere 172.19.0.0/16
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere
Chain DOCKER (0 references)
target prot opt source destination
ACCEPT tcp -- anywhere 172.19.0.23 tcp dpt:4444
ACCEPT tcp -- anywhere 172.19.0.23 tcp dpt:https
ACCEPT tcp -- anywhere 172.19.0.23 tcp dpt:http
what makes you say you're unable to receive internet traffic? What error are you seeing?
this is a vultr.com issue. unless you explicitly use their marketplace docker image, it is impossible to set up appwrite systems. not even on bare metal, with firewall disabled, iptables rules flushed, etc. .... i still haven't figured it out, it cost me two days, i don't want to, i'm just using the marketplace docker image for now, that works. sorry.
[SOLVED] docker container appwrite unable to receive internet traffic
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...