Add filebrowser
This commit is contained in:
@@ -26,3 +26,8 @@ FTLCONF_dns_listeningMode=all # If using Docker's default `bridge` network setti
|
|||||||
|
|
||||||
# Gitea
|
# Gitea
|
||||||
GITEA=/mnt/md0/gitea
|
GITEA=/mnt/md0/gitea
|
||||||
|
|
||||||
|
# FileBrowser
|
||||||
|
FILEBROWSER_DATA=/mnt/md0/files
|
||||||
|
FILEBROWSER_CONFIG=/mnt/md0/filebrowser/config
|
||||||
|
FILEBROWSER_DATABASE=/mnt/md0/filebrowser/database
|
||||||
|
|||||||
@@ -195,6 +195,23 @@ services:
|
|||||||
# - SYS_NICE
|
# - SYS_NICE
|
||||||
# restart: unless-stopped
|
# restart: unless-stopped
|
||||||
|
|
||||||
|
# --- File Browser ---
|
||||||
|
filebrowser:
|
||||||
|
image: filebrowser/filebrowser:latest
|
||||||
|
container_name: filebrowser
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
volumes:
|
||||||
|
- ${FILEBROWSER_DATA}:/srv
|
||||||
|
- ${FILEBROWSER_CONFIG}:/config
|
||||||
|
- ${FILEBROWSER_DATABASE}:/database
|
||||||
|
environment:
|
||||||
|
- FB_DATABASE=/database/filebrowser.db
|
||||||
|
- FB_CONFIG=/config/filebrowser.json
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
|
||||||
# --- Gitea ---
|
# --- Gitea ---
|
||||||
gitea:
|
gitea:
|
||||||
image: gitea/gitea:latest
|
image: gitea/gitea:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user