No description
Find a file
2023-02-28 15:09:59 -08:00
etc/samba bug fix and debug logging 2023-02-28 13:50:48 -08:00
Dockerfile allowing user to be configured with with env 2023-02-28 15:09:59 -08:00
Readme.md Updating README.md 2023-02-28 13:14:46 -08:00
run.sh bug fix and debug logging 2023-02-28 13:50:48 -08:00

samba-container

A basic single user samba server suitable for small scale NAS-like installations where having multi-user security is not important.

Running Samba Server

No real tricks here, the only essential thing is setting a password in the environment vars, the username is currently hardcoded to share.

To do so with a docker-compose file:

version: "2"

services:
    samba:
        image: git.andr3w.net/amd/samba-container:latest 
        restart: always
        environment:
            SMBPW: "Hunter22"
        ports:
            - "139:139"
            - "445:445"
            - "138:138/udp"
            - "137:137/udp"
        volumes:
            - "/host/share/folder:/share"