A lightweight, easy-to-configure Samba server.
703
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:
How to run it:
Pull the image:
docker pull martinrizzo/quick-samba-server
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
/path/to/your/data with the actual path to the directory you want to share.-e USER_ID and -e GROUP_ID arguments ensure proper file ownership and permissions within the container.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.
Content type
Image
Digest
sha256:0ecce12fd…
Size
19 MB
Last updated
about 2 years ago
docker pull martinrizzo/quick-samba-server