Add samba/docker-compose.yml

Create SMB share for Time Machine Backup area on DELTA
This commit is contained in:
2026-01-25 23:03:48 +00:00
parent 45661ca9dd
commit 07d84b69d5

15
samba/docker-compose.yml Normal file
View File

@@ -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