Move to my own fork of the idiot webdav container.

master
josiah 4 years ago
parent c1c7f552b6
commit dc295e151b

@ -39,6 +39,20 @@
- name: ensure traefik config directory exists
file: state=directory path=/home/josiah/apps/traefik/ owner=josiah group=josiah mode=0700
- name: ensure the webdav-docker repo exists
git:
repo: 'https://git.awful.club/hosted/webdav-docker.git'
dest: /home/josiah/apps/webdav-docker/
version: master
- name: build jlj-webdav image
community.general.docker_image:
name: jlj-webdav
build:
path: /home/josiah/apps/webdav-docker/latest
dockerfile: Dockerfile
source: build
- name: ensure mediaserver config directory exists
file: state=directory path=/home/josiah/apps/mediaserver/ owner=josiah group=josiah mode=0700

@ -161,7 +161,6 @@ services:
# https://github.com/v2tec/watchtower#options
# This schedule applies updates (if available) at midnight.
command: --cleanup --schedule "0 0 0 * * *"
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
@ -177,13 +176,12 @@ services:
# The main WebDAV container.
webdav:
# https://hub.docker.com/r/bytemark/webdav/
image: bytemark/webdav
restart: always
image: jlj-webdav:latest
networks:
- pubnet
volumes:
# - /home/josiah/apps/webdav/user.passwd:/user.passwd
- /home/josiah/sync/:/var/lib/dav/data
- /home/josiah/webdav/:/var/lib/dav/
environment:
SERVER_NAMES: "hatchery.home.jowj.net"
LOCATION: "/webdav"

Loading…
Cancel
Save