Comment on Need help with searxng docker compose
ohshit604@sh.itjust.works 2 weeks agoTaking a look at your docker-compose.yml
I see this volume mount:
volumes: - /volume1/SN/Docker/searxng-stack/searxng:/etc/searxng:rw
Whereas /volume1/SN/Docker/searxng-stack/searxng
is the directory on your system docker is attempting to use to store the files inside the container from /etc/searxng
.
Example of a volume mount that’ll likely work better for you;
volumes: - ~/docker/config/searxng:/etc/searxng
The tilde (~) acts as your current users home directory (not root) where docker volumes should be stored.
Apologies for the poor formatting, typing this on mobile.
Override4414@lemmy.world 1 week ago
Thank you so much, sorry it’s taken so long to reply. I still haven’t had the time, but I will take a closer look when I get the chance.