updating readme

This commit is contained in:
Andrew Davidson 2023-02-28 15:12:21 -08:00
parent e744867a13
commit 20b97f1cd8
Signed by: amd
GPG key ID: F1199FC0A76BB402

View file

@ -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"