No description
Find a file
Andrew Davidson 14eddae849
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
no-install-recommends to shrink size
2023-03-09 22:29:21 -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 fixing build script, multi-arch 2023-03-07 13:08:21 -08:00
Dockerfile no-install-recommends to shrink size 2023-03-09 22:29:21 -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"