19 lines
536 B
YAML
Executable File
19 lines
536 B
YAML
Executable File
version: '3.3'
|
|
services:
|
|
nginxwebdav:
|
|
container_name: nginxwebdav
|
|
image: dgraziotin/nginx-webdav-nononsense
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- WEBDAV_USERNAME=akanealw
|
|
- WEBDAV_PASSWORD=REBHv599XdhU4VScXXq7
|
|
- SERVER_NAMES=localhost,192.168.1.33,webdav.akanealw.com
|
|
- TIMEOUTS_S=1200 # these are seconds
|
|
- CLIENT_MAX_BODY_SIZE=120M # must end with M(egabytes) or G(igabytes)
|
|
ports:
|
|
- 32080:80
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/webdav:/data
|