website/_posts/2021-08-31-samba-docker-container.md
sthope 0506f02b43
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2021-09-04 02:52:02 +02:00

2.3 KiB

layout title description author image comments categories samba_repo env_file dockercompose samba_portainer_example repository_url compose_path
post Samba Docker Container Installing and configuring Samba using Docker and Portainer Stacks sthope samba-logo.png true
Docker
Samba
Portainer
Stacks
https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba/config.env https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba/samba.yml /assets/images/samba_example.png https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master samba/samba.yml

1. Terminal via cmdline

Open terminal, copy, adapt and send:

docker run -d \
-p 139:139 \
-p 445:445 \
-e TZ=Europe/Lisbon \
-v /docker:/share \
elswork/samba:latest \
-u "1000:1000:USERNAME:USERNAME:PASSWORD" \
-s "SmbShare:/share:rw:USERNAME"


### 2. Environments File

On the PC create environments text file named e.g. configs.env or download the file from here

USERNAME=JApoOgeY1PF7qqylo4
PASSWORD=uJ6CYqSp266IiijD7K

folder_to_share=/docker/

PUID=1000
PGID=1000

TZ=Europe/Lisbon

Reset_Mode=unless-stopped
tag_samba=latest
watchtower_autoupdate=false

Adapt to your needs.
`folder_to_share` is the folder you want to share over smb.
`USERNAME` & `PASSWORD` are the login details you will be using.
`PUID` & `PGID` are you `user id` and your `group id`. default generally is `1000`.
`TZ` is your timezone.

If you are not sure what to do about Reset_Mode & tag_samba & watchtower_autoupdate leave them as they are.

3. Deploy using a Git repository

Choose Repository option as building method.

Reposity URL:

{{page.repository_url}}

**Compose path:** ``` {{page.compose_path}} ```

Example: ![]({{page.samba_portainer_example}})

### 4. Testing
If you are using Windows 🙄 the folder should now be available opening File Explorer and navigating to: `\\samba_IP`

On Linux distros should be available navigating to: smb://samba_ip