File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -128,9 +128,19 @@ logs.
128
128
Add the ` -p ` option to the end of your options to the container, or set the
129
129
` PERMISSIONS ` environment variable.
130
130
131
- sudo docker run -it --name samba -p 139:139 -p 445:445 \
132
- -v /path/to/directory:/mount \
133
- -d dperson/samba -p
131
+ sudo docker run -it --name samba -p 139:139 -p 445:445 \
132
+ -v /path/to/directory:/mount \
133
+ -d dperson/samba -p
134
+
135
+ * High memory usage by samba. Multiple people have reported high memory usage
136
+ that's never freed by the samba processes. Recommended work around below:
137
+
138
+ Add the ` -m 512m ` option to docker run command, or ` mem_limit: ` in
139
+ docker_compose.yml files, IE:
140
+
141
+ sudo docker run -it --name samba -m 512m -p 139:139 -p 445:445 \
142
+ -v /path/to/directory:/mount \
143
+ -d dperson/samba -p
134
144
135
145
## Issues
136
146
You can’t perform that action at this time.
0 commit comments