Add samba/docker-compose.yml

This commit is contained in:
2026-04-25 22:18:37 +01:00
parent 0d521b809b
commit 0940794bd2

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

@@ -0,0 +1,16 @@
services:
samba:
image: dockurr/samba
container_name: samba
environment:
NAME: "TimeMachineDelta" # this is the share name ...
USER: "john"
PASS: "mary1948"
UID: "1000"
GID: "1000"
ports:
- 445:445
volumes:
- /media/disk/afpbackup:/storage # ... which is mapped to "storage"
restart: always