pull/22/head
zfhe 2024-03-22 10:14:03 +08:00
rodzic 21a88a8e8d
commit 254fc60224
3 zmienionych plików z 34 dodań i 0 usunięć

Wyświetl plik

@ -252,6 +252,7 @@ A [document management system](https://en.wikipedia.org/wiki/Document_management
- [Paperless NGX](examples/paperless-ngx) - A community-supported supercharged version of paperless: scan, index and archive all your physical documents.
- [Papermerge](examples/papermerge) - Free and open source document management system with OCR designed for scanned documents, digital archives, pdf, tiff, jpeg.
- [DocuSeal](examples/docuseal) - Create, fill, and sign digital documents (alternative to DocuSign).
- [alist](examples/alist/) - A file list/WebDAV program that supports multiple storages and provides functions such as network disk hosting and file preview.
### Pastebins

Wyświetl plik

@ -0,0 +1,3 @@
# References
- https://github.com/alist-org/alist/

Wyświetl plik

@ -0,0 +1,30 @@
version: "3.3"
services:
alist:
image: xhofe/alist:latest
container_name: alist
environment:
- PUID=0
- PGID=0
- TZ=UTC # specify a timezone to use,
- UMASK=022
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/etc/alist:/opt/alist/data
ports:
- 5244:5244
- 5245:5245
restart: unless-stopped
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.calibre.rule=Host(`calibre.example.com`)
# - traefik.http.services.calibre.loadbalancer.server.port=8083
# # Optional part for traefik middlewares
# - traefik.http.routers.calibre.middlewares=local-ipwhitelist@file,authelia@docker
#networks:
# proxy:
# external: true