From 07d84b69d5518e3dfd7cd2bcb9febe840536885e Mon Sep 17 00:00:00 2001 From: john Date: Sun, 25 Jan 2026 23:03:48 +0000 Subject: [PATCH] Add samba/docker-compose.yml Create SMB share for Time Machine Backup area on DELTA --- samba/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 samba/docker-compose.yml diff --git a/samba/docker-compose.yml b/samba/docker-compose.yml new file mode 100644 index 0000000..cf076f9 --- /dev/null +++ b/samba/docker-compose.yml @@ -0,0 +1,15 @@ +services: + samba: + image: dockurr/samba + environment: + NAME: "TimeMachineDelta" # this is the share name ... + USER: "john" + PASS: "mary1948" + UID: "1000" + GID: "1000" + ports: + - 445:445 + volumes: + - /media/disk/afpbackup # ... which is mapped to here + restart: always +