This container publish a share with smb protocol and authentication
344
This Alpine Linux container publish a samba server with authentication
SMB_USER, SMB_PASS, SMB_SHARE refers to the credentials and share name to expose.
version: '3.6'
services:
smb_server2:
image: tamuxx/samba-server2
container_name: smb_server2
restart: unless-stopped
hostname: smb_server2
environment:
- SMB_USER=username
- SMB_PASS=password
- SMB_SHARE=share_name_to_publish
volumes:
- /data_to_share/:/mnt
ports:
- 139
- 445
Content type
Image
Digest
Size
16 MB
Last updated
over 5 years ago
docker pull tamuxx/samba-server2