I have nextcloud:latest installed on Docker on Ubuntu 18.04 but I’m unable to mount external samba shares shared on Windows 2012 R2 host. I’m getting protocol negotiation failed nt_status_connection_reset in the logs.
I installed smbclient using the following Dockerfile:
FROM nextcloud:apache
RUN apt-get update && apt-get install -y procps smbclient && rm -rf /var/lib/apt/lists/*
which seemed to work since before I did that SMB/CIFS external storage was not even an option.
Am I missing something here?