From 0940794bd2b78a0f0880e26ec6852a5503ae5b4a Mon Sep 17 00:00:00 2001 From: john Date: Sat, 25 Apr 2026 22:18:37 +0100 Subject: [PATCH] Add samba/docker-compose.yml --- samba/docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 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..0aceafd --- /dev/null +++ b/samba/docker-compose.yml @@ -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 +