Skip to content

Simple but fast samba server which lives in tiny Alpine Linux container.

Notifications You must be signed in to change notification settings

d3vilh/samba-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

samba-docker

Speedy Samba Server Encased in a Minimal Alpine Linux Container.

latest version Docker Image Version (tag latest semver) Docker Image Size (tag)

Quickstart

samba:
  image: d3vilh/samba-docker:latest
  hostname: samba
  container_name: samba

  volumes:
    # Sharing Samba config file
    - ./smb.conf:/etc/samba/smb.conf

    # Shares
    - ~/files:/mnt/files
    - ~/torrents:/mnt/torrents :ro

  ports:
    - "137:137/udp"
    - "138:138/udp"
    - "139:139/tcp"
    - "445:445/tcp"

  environment:
    - USERNAME=raspberry
    - PASSWORD=gateway
    # - UID=1000 # Optional to override default UID = 1000
    # - GID=1000 # Optional to override default GID = 1000

Build own image

./build-image.sh

Buy Me A Coffee