-
Hi! I've been trying to deploy the docker stack to my homelab but I can't seem to access the front-end page using server's wireguard ip & port I specified in docker-compose. I can't seem to access ports 3000 or 5000 either. From the docs I see that ryot uses Caddy under the hood, is it not possible to connect to the service directly via http or expose it manually through nginx I have already set up? |
Beta Was this translation helpful? Give feedback.
Answered by
IgnisDa
Sep 20, 2024
Replies: 1 comment 6 replies
-
The exposed port should be 8000. Not sure where you're getting 3000 and 5000 from. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change it to
8282:8000
. This means you're exposing the docker port of 8000 and forwarding it to 8282. That way you can run apache on 8000 if you want.