Add samba/docker-compose.yml

This commit is contained in:
2026-02-17 14:26:13 +00:00
parent de07a26e24
commit b31b09b4eb

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

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