29 lines
994 B
YAML
29 lines
994 B
YAML
# Static website with Filebrowser as an admin tool.
|
|
#
|
|
services:
|
|
# https://github.com/filebrowser/filebrowser
|
|
# https://hub.docker.com/r/filebrowser/filebrowser
|
|
filebrowser:
|
|
image: filebrowser/filebrowser:latest
|
|
restart: unless-stopped
|
|
# Take care a possible public port collision.
|
|
ports:
|
|
- 8201:80
|
|
# The same Linux user running the reverse proxy webserver.
|
|
user: 33:1001
|
|
environment:
|
|
TZ: Europe/Budapest
|
|
# Default credentials: admin/admin
|
|
# Note, FB_NOAUTH only matters if the database is still empty.
|
|
#FB_NOAUTH: true
|
|
FB_BASEURL: "/"
|
|
volumes:
|
|
# The Linux user defined above must have R/W access here.
|
|
- ./storage/volumes/staticweb:/srv
|
|
- ./storage/volumes/filebrowser_data/filebrowser.json:/.filebrowser.json
|
|
- ./storage/volumes/filebrowser_data/database.db:/.database.db
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|