blob: 1626b3c4525970e4bf9aa99ee9e619d914160a84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
services:
samba:
image: ghcr.io/servercontainers/samba:smbd-only-a3.20.2-s4.19.6-r0
restart: always
environment:
WSDD2_DISABLE: 1
AVAHI_DISABLE: 1
NETBIOS_DISABLE: 1
GROUP_family: 1050
ACCOUNT_test: notverysecret
UID_test: 1000
GROUPS_test: family
SAMBA_GLOBAL_STANZA: "follow symlinks = no"
SAMBA_VOLUME_CONFIG_test: "[Share]; path=/shares/test; valid users = test; guest ok = no; read only = no; browseable = yes"
volumes:
- ../../../build/test-share:/shares/test
ports:
- "127.0.0.1:10445:445"
|