Comment on Need help with searxng docker compose

<- View Parent
ohshit604@sh.itjust.works ⁨2⁩ ⁨weeks⁩ ago

Taking 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.

source
Sort:hotnewtop