{"id":16368096,"url":"https://github.com/bfren/docker-samba","last_synced_at":"2026-01-20T21:06:13.305Z","repository":{"id":104361101,"uuid":"555262677","full_name":"bfren/docker-samba","owner":"bfren","description":"Docker Samba image.","archived":false,"fork":false,"pushed_at":"2025-12-08T09:13:18.000Z","size":102,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-09T11:10:01.588Z","etag":null,"topics":["docker","samba","samba-server","samba-share","smb"],"latest_commit_sha":null,"homepage":"","language":"Nushell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bfren.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"bfren","patreon":"bfren"}},"created_at":"2022-10-21T08:37:49.000Z","updated_at":"2025-12-05T21:24:03.000Z","dependencies_parsed_at":"2024-01-13T12:38:07.300Z","dependency_job_id":"2e9a8435-a0ba-4b3b-be3a-802ca5480a6d","html_url":"https://github.com/bfren/docker-samba","commit_stats":null,"previous_names":[],"tags_count":82,"template":false,"template_full_name":null,"purl":"pkg:github/bfren/docker-samba","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfren%2Fdocker-samba","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfren%2Fdocker-samba/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfren%2Fdocker-samba/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfren%2Fdocker-samba/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bfren","download_url":"https://codeload.github.com/bfren/docker-samba/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfren%2Fdocker-samba/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28613706,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T18:56:40.769Z","status":"ssl_error","status_checked_at":"2026-01-20T18:54:26.653Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","samba","samba-server","samba-share","smb"],"created_at":"2024-10-11T02:51:38.356Z","updated_at":"2026-01-20T21:06:13.300Z","avatar_url":"https://github.com/bfren.png","language":"Nushell","readme":"# Docker Samba\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/bfren/docker-samba) ![Docker Pulls](https://img.shields.io/endpoint?url=https%3A%2F%2Fbfren.dev%2Fdocker%2Fpulls%2Fsamba) ![Docker Image Size](https://img.shields.io/endpoint?url=https%3A%2F%2Fbfren.dev%2Fdocker%2Fsize%2Fsamba) ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/bfren/docker-samba/dev.yml?branch=main)\n\n[Docker Repository](https://hub.docker.com/r/bfren/samba) - [bfren ecosystem](https://github.com/bfren/docker)\n\nComes with Samba pre-installed, and creates config based on a json file (see shares-conf-sample.json).\n\n## Contents\n\n* [Ports](#ports)\n* [Volumes](#volumes)\n* [Sample Files](#sample-files)\n* [Licence / Copyright](#licence)\n\n## Ports\n\n* 445\n\n## Volumes\n\n| Volume   | Purpose                          |\n| -------- | -------------------------------- |\n| `/files` | Contains the files to be shared. |\n\n## Sample Files\n\n`docker-compose.yml`\n\n```yaml\nversion: \"3.8\"\n\nservices:\n  samba:\n    image: bfren/samba:latest\n    container_name: samba\n    restart: unless-stopped\n    ports:\n      - \"0.0.0.0:445:445\"\n    volumes:\n      - ./v/shares.json:/files/shares.json:ro\n      - ./v/example:/files/example\n      - ./v/another:/files/another\n    networks:\n      - samba\n\nnetworks:\n  samba:\n    driver: bridge\n    name: samba\n```\n\n`shares.json`\n\n```json\n{\n    \"$schema\": \"https://schemas.bfren.dev/docker/samba/shares.json\",\n    \"users\": [\n        {\n            \"name\": \"fred\",\n            \"pass\": \"password\"\n        },\n        {\n            \"name\": \"jones\",\n            \"pass\": \"another\"\n        }\n    ],\n    \"shares\": [\n        {\n            \"name\": \"example\",\n            \"comment\": \"Optional description of share\",\n            \"users\": [\n                \"fred\"\n            ],\n            \"browseable\": false,\n            \"writeable\": false\n        },\n        {\n            \"name\": \"another\",\n            \"users\": [\n                \"fred\",\n                \"jones\"\n            ]\n        }\n    ]\n}\n```\n\n## Licence\n\n\u003e [MIT](https://mit.bfren.dev/2022)\n\n## Copyright\n\n\u003e Copyright (c) 2022-2026 [bfren](https://bfren.dev) (unless otherwise stated)\n","funding_links":["https://github.com/sponsors/bfren","https://patreon.com/bfren"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfren%2Fdocker-samba","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbfren%2Fdocker-samba","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfren%2Fdocker-samba/lists"}