22 lines
388 B
YAML
22 lines
388 B
YAML
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
|
|
|