Sign inSign up

martinrizzo/quick-samba-server

By martinrizzo

Updated about 2 years ago

A lightweight, easy-to-configure Samba server.

Image
Networking
Security
Databases & storage
0

703

martinrizzo/quick-samba-server repository overview

QuickSambaServer: Easy File Sharing with Docker

QuickSambaServer simplifies setting up a file server for your home or small business. It offers straightforward configuration for both resources and users, making it ideal for sharing files and disk drives among trusted individuals.

What it does:

  • Provides a ready-to-use Samba server container.
  • Allows you to easily share files and directories with others.
  • Simplifies user management and access control.

How to run it:

  1. Pull the image:

    docker pull martinrizzo/quick-samba-server
    
  2. Run the container:

    docker run -d \
        -e USER_ID=$(id -u) -e GROUP_ID=$(id -g) \
        -p 139:139                     \
        -p 445:445                     \
        --name quick-samba-server      \
        -v /path/to/your/data:/appdata \
        martinrizzo/quick-samba-server
    
    • Replace /path/to/your/data with the actual path to the directory you want to share.
    • The -e USER_ID and -e GROUP_ID arguments ensure proper file ownership and permissions within the container.
  3. Configure the server:

    You can customize the server's behavior by providing a configuration file. This allows you to define specific resources, users, and access permissions. For detailed information on configuring the server, please refer to the QuickSambaServer Github repository.

Note: This image is designed for trusted environments. For more secure configurations, consider using additional security measures.

Tag summary

Content type

Image

Digest

sha256:0ecce12fd

Size

19 MB

Last updated

about 2 years ago

docker pull martinrizzo/quick-samba-server