Open capriciousduck opened 4 years ago
Which command did you use to start it up?
@capriciousduck Any luck with this? I have the same issue
Nevermind, turns out I had mis-typed my ports.
docker run --name nfs --privileged -v /tmp/nfs:/nfsshare -e SHARED_DIRECTORY=/nfsshare -p "2049:2049" itsthenetwork/nfs-server-alpine:latest
I have the same problem. Have you found a way to solve it? @capriciousduck
@fvfvsda @capriciousduck Hello, same problem, do you find a way to solve the problem ? 3 Months stuck with simple thing like this :(
You can try to refer to docker-compose.yml in this website. I hope this can help you. https://blog.siaimes.me/2021/01/01/p54.html#more @TheNexter
You can try to refer to docker-compose.yml in this website. I hope this can help you. https://blog.siaimes.me/2021/01/01/p54.html#more @TheNexter
It's work for you ? :(
You can try to refer to docker-compose.yml in this website. I hope this can help you. https://blog.siaimes.me/2021/01/01/p54.html#more @TheNexter
It's work for you ? :(
The file in the container named nfsd.sh also need to be modified. You can refer to this. https://github.com/siaimes/nfs-server-alpine/commit/15ff1e0399430ea46a639819be2143fc785f6b12
Do we have a solution yet? Stuck with this for a while now. @sureshjoshi @capriciousduck @sjiveson
I am running this as a stand alone container, facing the same problem and yes the privileged: true
version: '3'
services:
nfs-server:
image: itsthenetwork/nfs-server-alpine:latest-arm
container_name: nfs-server
ports:
- "2049:2049"
volumes:
- ./shared:/nfsshare
environment:
- SHARED_DIRECTORY=/nfsshare
privileged: true
restart: always
Yet when I try to mount from host
sudo mount -v 192.168.29.203:/nfsshare ./somelocalplace
gives connection refused.
Hi, Try this: sudo mount.nfs4 -v 192.168.29.203:/ ./somelocalplace Without "nfsshare" just "/"
I deployed this image on my linux laptop and trying to mount the shares in my raspberry pi(running debian). I get the following error.
Though, my container logs show no errors. The log from container is below.