Files
DELTA/samba/docker-compose.yml
john 07d84b69d5 Add samba/docker-compose.yml
Create SMB share for Time Machine Backup area on DELTA
2026-01-25 23:03:48 +00:00

16 lines
325 B
YAML

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