mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
feat: docker compose files for new homelab services
This commit is contained in:
parent
c63c73e20f
commit
78f4f39789
30 changed files with 1337 additions and 21 deletions
2
webdav/.env
Normal file
2
webdav/.env
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
WEBDAV_USER=theo
|
||||
WEBDAV_PASSWORD=58201928alsk
|
||||
16
webdav/docker-compose.yaml
Normal file
16
webdav/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
services:
|
||||
webdav:
|
||||
image: bytemark/webdav
|
||||
container_name: webdav
|
||||
environment:
|
||||
- AUTH_TYPE=Basic
|
||||
- USERNAME=${WEBDAV_USER}
|
||||
- PASSWORD=${WEBDAV_PASSWORD}
|
||||
volumes:
|
||||
- samba_data:/var/lib/dav
|
||||
ports:
|
||||
- 8081:80
|
||||
|
||||
volumes:
|
||||
samba_data:
|
||||
external: True
|
||||
Loading…
Add table
Add a link
Reference in a new issue