Install problems on Synology Docker

Thank you so much, @nigel !

With your suggestion to used a Docker named volume rather than a bind mount, all is working perfectly. My files are work as they should and the templates have synced.

I will note that, as above, the Docker Compose YAML file just needs two more lines at the very end to avoid a “volume not found” error.

I post the final file here for others’ benefit, as it seems Synology has some quirks when it comes to its Docker implementation that may not exist on other platforms.

Thanks again for the help!

services:
    baserow:
        container_name: baserow
        ports:
            - '9988:80'
        environment:
            - 'BASEROW_PUBLIC_URL=http://192.168.86.200:9988'
        volumes:
            - 'baserow_data:/baserow/data'
        restart: always
        image: 'baserow/baserow:1.13.0'
volumes:
  baserow_data: