chore: add Makefile, headers, and source stubs for fusedav WebDAV FUSE3 client

This commit is contained in:
2026-01-06 13:23:31 +00:00
commit 09dc4e00f9
23 changed files with 2698 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:1.22.4
container_name: tea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "127.0.0.1:8082:3000"
- "0.0.0.0:22:22"