Beiträge von theITtechbeforeme

    I know this is late, but I've been working on the same thing....I've had a heck of a time trying to get everything just right...spent about 5 days on it. I originally tried to mount SMB shares to the docker ( those are the volumes I declared as external)

    Code
    sudo docker volume create --driver local --opt type=cifs --opt device=//<IP>/NextCloud/files --opt o=username=nextcloud,password=<SMB share password>,uid=33,gid=33,file_mode=0777,dir_mode=0777 nextcloudData # the GUID 33 is www-data user
    to
    sudo docker volume create --driver local --opt type=cifs --opt device=//<IP>/NextCloud/config --opt o=username=nextcloud,password=<SMB share password>,uid=33,gid=33,file_mode=0770,dir_mode=0770 nextcloudConfig


    Still working on the SWAG part, but here is my docker compose file: