# docker-samba-server **Repository Path**: rabbired/docker-samba-server ## Basic Information - **Project Name**: docker-samba-server - **Description**: Simple containerized Samba server running on Alpine Linux - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-02 - **Last Updated**: 2022-06-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Samba Server Container [![Docker Pulls](https://img.shields.io/docker/pulls/joebiellik/samba-server.svg)](https://hub.docker.com/r/joebiellik/samba-server/) [![Docker Stars](https://img.shields.io/docker/stars/joebiellik/samba-server.svg)](https://hub.docker.com/r/joebiellik/samba-server/) [![Docker Build](https://img.shields.io/docker/automated/joebiellik/samba-server.svg)](https://hub.docker.com/r/joebiellik/samba-server/) [![Docker Build Status](https://img.shields.io/docker/build/joebiellik/samba-server.svg)](https://hub.docker.com/r/joebiellik/samba-server/) [Samba 4](https://www.samba.org/) server running under [s6 overlay](https://github.com/just-containers/s6-overlay) on [Alpine Linux](https://hub.docker.com/_/alpine/). Runs both `smbd` and `nmbd` services. ## Configuration See [example directory](https://github.com/jcbiellikltd/docker-samba-server/tree/master/example) for sample config file. ## Quickstart ```yml 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 ```