This image is based on Ubuntu + Apache
971
This image is based on Apache WebDAV, built on the ubuntu:22.04 foundation.
docker run --name webdav \
--restart unless-stopped \
-p 8080:80 \
-e WEBDAV_USERNAME=jjajjara \
-e WEBDAV_PASSWORD=mypassword \
-e UID=1000 \
-e GID=1000 \
-e TZ=Asia/Seoul \
-v /data:/var/www/webdav \
jjajjara/webdav-apache:latest
services:
webdav:
image: jjajjara/webdav-apache:latest
container_name: webdav
restart: unless-stopped
ports:
- "8080:80"
environment:
- WEBDAV_USERNAME: jjajjara
- WEBDAV_PASSWORD: mypassword
- UID: 1000
- GID: 1000
- TZ: Asia/Seoul
volumes:
- /data:/var/www/webdav
########
이미지는 ubuntu 22.04 + apache2.4.52 기반으로 작성되었습니다.
Dockerfile, entrypoint.sh, webdav.conf 는 아래 github을 참조하여 필요한 수정후 빌드해서 사용하시기 바랍니다.
https://github.com/jjajjara/webdav-apacheContent type
Image
Digest
sha256:66e88bd52…
Size
62.1 MB
Last updated
almost 2 years ago
docker pull jjajjara/webdav-apache