cyqsimon / docker-samba-server

Simple containerized Samba server running on Alpine Linux

Home Page:https://hub.docker.com/r/joebiellik/samba-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Samba Server Container

Docker Pulls Docker Stars Docker Build Docker Build Status

Samba 4 server running under s6 overlay on Alpine Linux. Runs both smbd and nmbd services.

Configuration

See example directory for sample config file.

Quickstart

samba:
  image: joebiellik/samba-server

  volumes:
    # You must provide a Samba config file
    - ./smb.conf:/etc/samba/smb.conf

    # Shares
    - ~/projects:/mnt/projects
    - ~/videos:/mnt/videos:ro

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

  environment:
    - USERNAME=joe
    - PASSWORD=samba

About

Simple containerized Samba server running on Alpine Linux

https://hub.docker.com/r/joebiellik/samba-server


Languages

Language:Dockerfile 100.0%