Find a file
2016-05-17 18:57:47 +01:00
example Add example configuration 2016-05-17 18:32:28 +01:00
.editorconfig Add example configuration 2016-05-17 18:32:28 +01:00
.gitattributes Initial commit 2016-05-17 16:24:51 +01:00
Dockerfile Improve service configuration 2016-05-17 18:32:07 +01:00
finish.s6 Improve service configuration 2016-05-17 18:32:07 +01:00
README.md Add badge 2016-05-17 18:57:47 +01:00
run.s6 Improve service configuration 2016-05-17 18:32:07 +01:00

Samba server

Docker Pulls

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:/config/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