Closed ofsaleem closed 2 years ago
Hey, you can't use localhost within a docker container since this tries to resolve to the localhost of that docker container. Try using the IP of your computer as if you were to access komga from a different device in your local network.
Right, you could either put both containers in a docker network and use the Containername of the komga container as the hostname, or you use the host IP as a hostname (most likely 172.17.0.1, you can search for it by running "ip a" in a terminal and looking for the "docker0" entry)
thanks team, i am embarrassed i didn't make that connection myself (pun intended) lmao
im running komga in docker and i've been trying to run anisearch in docker as well, using the docker-compose file you provided, however the container keeps crashing with a connection refused
i've confirmed that in a browser,
http://localhost:8089/api/v1/series?size=50000
works fine. my docker-compose file for anisearch has this line- KOMGAURL=http://localhost:8089
do i need to put the url in differently?thanks!