i can't seam to connect to the instance for self hosted
I'm using docker in aws ec2
ZROK_DNS_ZONE=compute.amazonaws.com
ZROK_USER_EMAIL=me@compute.amazonaws.com
ZROK_USER_PWD=password
ZROK_INSECURE_INTERFACE=0.0.0.0
ZROK_CTRL_PORT=18080
ZROK_FRONTEND_PORT=8080
ZROK_OAUTH_PORT=8081
ZITI_CTRL_ADVERTISED_PORT=1280
ZITI_ROUTER_PORT=3022
ZITI_IMAGE_TAG=latest
ZITI_PWD=password
ZROK_ADMIN_TOKEN=zroktoken
when i do
docker ps -a
shows
Welcome to the OpenZiti (and zrok ) community, @Cariaga.
I assume compute.amazonaws.com
is an example, and you have a wildcard DNS record inside the DNS zone you used for the value of ZROK_DNS_ZONE
.
I performed a quick test using your .env
example with my own DNS zone and did not encounter the same problem.
Your terminal screenshot shows the zrok-controller
and zrok-frontend
containers did not start successfully.
Let's troubleshoot the zrok-controller
container first by looking for clues in the Docker self-hosting troubleshooting section: Self-hosting guide for Docker | Zrok
In particular, you need to run the first step in the troubleshooting section to look for clues why the zrok-controller
container did not start.
docker compose logs zrok-controller
Let me know if you find the answer!