I’m not sure if I’m missing something but for some reason my vault folder ends up being created inside my config folder (instead of being at the same level - side by side) which makes it less convenient to backup just my data (files/vaults) which should all be in the /vaults folder
- Per my docker-compose.yaml they should be in separate places
- When I try to move it, I see the /vaults folder exists but trying to move it gives me this error
"Failed to move vault. Error: EXDEV: cross-device link not permitted, rename '/config/JimsDocs' -> '/vaults/JimsDocs'"
Docker Compose
services:
obsidian:
image: 'ghcr.io/sytone/obsidian-remote:latest'
container_name: obsidian-remote
restart: unless-stopped
#network_mode: host
ports:
- 8088:8080
# - 8443:8443
volumes:
- /etc/localtime:/etc/localtime:ro
- /home/docker/obsidian/vaults:/vaults
- /home/docker/obsidian/config:/config
environment:
- PUID=1000
- PGID=1000
privileged: true