1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/nfs/docker-compose.yml

14 lines
245 B
YAML
Raw Normal View History

2021-12-15 06:11:34 +02:00
version: "3.8"
services:
nfs:
2021-12-15 08:52:18 +02:00
image: easypi/nfs
2021-12-15 06:11:34 +02:00
volumes:
- ./data:/data
environment:
2021-12-15 08:52:18 +02:00
- EXPORT_ID=0
2021-12-15 06:11:34 +02:00
- EXPORT_PATH=/data
2021-12-15 08:52:18 +02:00
- PSEUDO_PATH=/
privileged: true
network_mode: host
2021-12-15 06:11:34 +02:00
restart: unless-stopped