1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/samba/README.md

70 lines
1.2 KiB
Markdown
Raw Normal View History

2015-07-17 14:53:21 +00:00
samba
=====
2015-07-17 15:11:33 +00:00
![](https://badge.imagelayers.io/vimagick/samba:latest.svg)
2016-03-06 09:37:18 +00:00
[Samba][1] is the standard Windows interoperability suite of programs for
2015-07-17 15:11:33 +00:00
Linux and Unix.
## docker-compose.yml
```
samba:
image: vimagick/samba
volumes:
2016-03-06 09:37:18 +00:00
- ./smb.conf:/etc/samba/smb.conf
- ./share:/share
2016-04-07 01:46:55 +00:00
net: host
2015-07-17 15:11:33 +00:00
restart: always
```
## smb.conf
```
[global]
workgroup = WORKGROUP
2016-04-07 00:35:31 +00:00
netbios name = EasyPi
server string = Samba Server
2016-03-06 09:37:18 +00:00
map to guest = bad user
2015-07-17 15:11:33 +00:00
[share]
path = /share
browseable = yes
2016-04-07 00:56:01 +00:00
read only = no
2015-07-17 15:11:33 +00:00
guest ok = yes
2016-04-07 00:56:01 +00:00
admin users = root
2015-07-17 15:11:33 +00:00
```
## server
```
$ cd ~/fig/samba
2015-07-17 15:50:28 +00:00
$ mkdir share
$ touch share/README.txt
2015-07-17 15:11:33 +00:00
$ docker-compose up -d
$ docker exec -it samba_samba_1 sh
2015-07-17 15:50:28 +00:00
>>> smbpasswd -a root
New SMB password:******
Retype new SMB password:******
2015-07-17 15:11:33 +00:00
>>> exit
```
## client
```
2016-04-07 01:46:55 +00:00
$ smbutil view -NG smb://easypi
2016-03-06 09:37:18 +00:00
Share Type Comments
-------------------------------
share Disk
2016-04-07 00:56:01 +00:00
IPC$ Pipe IPC Service (Samba Server)
2016-03-06 09:37:18 +00:00
2 shares listed
$ mkdir -p /Volumes/share
2016-04-07 01:46:55 +00:00
$ mount_smbfs //guest@easypi/share /Volumes/share
2016-03-06 09:37:18 +00:00
$ umount /Volumes/share
2015-07-17 15:11:33 +00:00
```
2015-07-17 14:53:21 +00:00
2016-04-07 00:56:01 +00:00
> `root` user can read and write, `guest` user can read only.
2015-07-17 14:53:21 +00:00
[1]: https://www.samba.org/