e9bf43469c
Replace Docker CIFS named volumes with bind mounts to /mnt/nas_backup, which is managed by a systemd automount unit. This handles drive spin-down reconnection independently of Docker container lifecycle.
21 lines
444 B
YAML
21 lines
444 B
YAML
services:
|
|
filebrowser:
|
|
container_name: filebrowser-colleen-hd
|
|
image: gtstef/filebrowser:beta
|
|
environment:
|
|
FILEBROWSER_CONFIG: "data/config.yaml"
|
|
TZ: "America/New_York"
|
|
volumes:
|
|
- /mnt/nas_backup:/folder
|
|
- /srv/filebrowser-colleen-hd:/home/filebrowser/data
|
|
ports:
|
|
- 3427:80
|
|
networks:
|
|
- npm-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
default:
|
|
npm-network:
|
|
external: true
|