I gave up ….
I’m just testing to move from OMV to unraid.
Very important form e are to migrate all my docker containers.
As first sept I installed portainer without any issue, top!
After this I started to migrate my mosquitto container. So I moved my config folder to the app folder and to be save I run the tool „New Permissions“ and disabled the cache for appdata. I setup a new stack in portainer and run it.
This is my stack/compose file:
services:
mosquitto:
container_name: "mosquitto"
image: "eclipse-mosquitto:latest"
volumes:
- "/mnt/user/appdata/mosquitto/config/mosquitto.conf:/mosquitto/config/mosquitto.conf"
- "/mnt/user/appdata/mosquitto/data:/mosquitto/data"
- "/mnt/user/appdata/mosquitto/log:/mosquitto/log"
- "/etc/localtime:/etc/localtime:ro"
network_mode: bridge
ports:
- "1883:1883"
- "9001:9001"
restart: always
So very simple
The container started but mosquito wont run. The log shows the error: “No log line matching the '' filter” – so not able to write to log file.
I tested some other container/config, no one will run.
I think I have an issue with the access rights to the files/folders.
But I don’t know how to fix it …
What can I do?