22 lines
459 B
YAML
22 lines
459 B
YAML
version: "3.9"
|
|
services:
|
|
webdav:
|
|
deploy:
|
|
replicas: 3
|
|
restart: always
|
|
image: registry.alm.lan/webdav:latest
|
|
volumes:
|
|
- data:/var/www/html
|
|
- "/etc/timezone:/etc/timezone:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
ports:
|
|
- 5003:5003
|
|
- 5004:5004
|
|
volumes:
|
|
data:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
device: ":/srv/docker/volumes/webdav"
|
|
o: "addr=192.168.8.231,rw,nfsvers=4,async"
|