From b31b09b4eb89d8f24400a86b7d3b474306fbd64e Mon Sep 17 00:00:00 2001 From: john Date: Tue, 17 Feb 2026 14:26:13 +0000 Subject: [PATCH] Add samba/docker-compose.yml --- samba/docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..774f45c --- /dev/null +++ b/samba/docker-compose.yml @@ -0,0 +1,21 @@ +services: + samba: + image: dockurr/samba + environment: + NAME: "dev-cluster" # this is the share name ... + USER: "john" + PASS: "mary1948" + UID: "1000" + GID: "1000" + ports: + - 445:445 + volumes: + - /media/gv0:/storage # ... which is mapped to here + restart: always + networks: + - caddy_net + +networks: + caddy_net: + external: true +