From 20b97f1cd85833df166ac2fec7db4b2ecb334bbd Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Tue, 28 Feb 2023 15:12:21 -0800 Subject: [PATCH] updating readme --- Readme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index df681d1..efc046c 100644 --- a/Readme.md +++ b/Readme.md @@ -4,7 +4,7 @@ A basic single user samba server suitable for small scale NAS-like installations ## Running Samba Server -No real tricks here, the only essential thing is setting a password in the environment vars, the username is currently hardcoded to `share`. +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: @@ -16,7 +16,8 @@ services: image: git.andr3w.net/amd/samba-container:latest restart: always environment: - SMBPW: "Hunter22" + - SMBUSER: "share" + - SMBPW: "Hunter22" ports: - "139:139" - "445:445"