I read over the docker documentation at Installation | Zola. Everything works except the browser auto refresh on save. It does not seem like a zola issue because zola is updating on every save and when I manually refresh the browser i see the changes, but I was hoping someone may have found the solution to this (i spent a good hour searching). I am using the docker-compose file below. I am running v0.13 in WSL2. Auto refresh is working outside of docker on my windows and WSL2 installation. I would be happy to provide any other information if it helps. Thank you!
version: "2.4"
services:
docs:
working_dir: /docs
image: balthek/zola:0.13.0
container_name: zola_workspace
command: serve --interface 0.0.0.0 --port 8080 --base-url localhost
volumes:
- ./docs:/docs
ports:
- "8080:8080"