Sign inSign up

tamuxx/samba-server2

By tamuxx

Updated over 5 years ago

This container publish a share with smb protocol and authentication

Image
0

344

tamuxx/samba-server2 repository overview

samba-server2

This Alpine Linux container publish a samba server with authentication

Enviromment variables Groups:

SMB_USER, SMB_PASS, SMB_SHARE refers to the credentials and share name to expose.

yml example:

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

Tag summary

Content type

Image

Digest

Size

16 MB

Last updated

over 5 years ago

docker pull tamuxx/samba-server2