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"