No description
Find a file
Andrew Davidson bc4e0eb789
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Adding ci files
2023-03-06 22:42:32 -08:00
etc/samba bug fix and debug logging 2023-02-28 13:50:48 -08:00
.woodpecker.yml Adding ci files 2023-03-06 22:42:32 -08:00
build.sh Adding ci files 2023-03-06 22:42:32 -08:00
Dockerfile adding healthcheck 2023-03-02 17:06:31 -08:00
Readme.md updating readme 2023-02-28 15:12:21 -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 username and password in the environment vars.

To do so with a docker-compose file:

version: "2"

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