Hello everybody, I've a question about docker compose configuration on this tool (resilio-sync).
This is my docker-compose.yml extracted from hub.docker.com with little bit modifications:
---
version: "2.1"
services:
resilio-sync:
image: lscr.io/linuxserver/resilio-sync
container_name: resilio-sync
environment:
- PUID=998 #First modification
- PGID=100 #Second modification
- TZ=Europe/Madrid #Third modification
volumes:
- /XXXX/config:/config #Fourth modification (in my raspberry pi absolute path)
- /XXXX/downloads:/downloads #Fifth modification (same above)
- /XXXX/data:/sync #Sixth modification (same above)
ports:
- 8888:8888
- 55555:55555
restart: unless-stopped
So I create all the folders previously descripted in my raspberry PI (in a external disk connected). The permissions is 644 and the user ID is 998 and the Group ID is 100.
And now when I deploy the stack with this yaml file I get this continuous message:
...
[timestamp error 1 Operation not permitted] assert failed /build/sync/util/posix/util_posix.cpp:164
[timestamp error 1 Operation not permitted] assert failed /build/sync/util/posix/util_posix.cpp:164
[timestamp error 1 Operation not permitted] assert failed /build/sync/util/posix/util_posix.cpp:164
[timestamp error 1 Operation not permitted] assert failed /build/sync/util/posix/util_posix.cpp:164
...
What can I do to solve this issue?
Thanks in advance.