initial commit
This commit is contained in:
parent
2362d1a82a
commit
0251a063fc
@ -5,7 +5,9 @@
|
||||
<ul class="pages">
|
||||
<li><a href="{{ site.baseurl }}/"><i class="fa fa-home"></i> Home</a></li>
|
||||
<li><a href="{{ site.baseurl }}/by-year/"><i class="fa fa-archive"></i> All Posts</a></li>
|
||||
<li><a href="{{ site.baseurl }}/dockercontainers"><i class="fab fa-docker"></i> My Dockers</a></li>
|
||||
<li><a href="https://git.sthope.dev/sthope/docker_portainer_stacks" target="_blank"><i class="fas fa-cubes"></i> Portainer Stacks</a></li>
|
||||
<li><a href="https://git.sthope.dev/sthope?tab=&sort=recentupdate&q=proxmox" target="_blank"><i class="fab fa-product-hunt"></i> Proxmox LXC's</a></li>
|
||||
<li><a href="{{ site.baseurl }}/dockercontainers"><i class="fab fa-docker"></i> My Docker Containers</a></li>
|
||||
<li><a href="{{ site.baseurl }}/search/"><i class="fa fa-search"></i> Search</a></li>
|
||||
</ul>
|
||||
|
||||
|
84
_posts/2021-08-31-samba-docker-container.md
Normal file
84
_posts/2021-08-31-samba-docker-container.md
Normal file
@ -0,0 +1,84 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Samba Docker Container"
|
||||
description: "Installing and configuring Samba using Docker and Portainer Stacks"
|
||||
author: sthope
|
||||
image: samba-logo.png
|
||||
comments: true
|
||||
categories: [ Docker, Samba, Portainer, Stacks ]
|
||||
samba_repo: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba"
|
||||
env_file: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba/config.env"
|
||||
dockercompose: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba/samba.yml"
|
||||
samba_portainer_example: "/assets/images/samba_example.png"
|
||||
repository_url: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master"
|
||||
compose_path: "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"
|
||||
```
|
||||
<br>
|
||||
<br>
|
||||
### 2. Environments File
|
||||
|
||||
On the PC create environments text file named e.g. `configs.env` or download the file from [here]({{page.env_file}})
|
||||
```
|
||||
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
|
||||
```
|
||||
<br>
|
||||
Adapt to your needs.<br>
|
||||
`folder_to_share` is the folder you want to share over smb.<br>
|
||||
`USERNAME` & `PASSWORD` are the login details you will be using.<br>
|
||||
`PUID` & `PGID` are you `user id` and your `group id`. default generally is `1000`.<br>
|
||||
`TZ` is your timezone.<br>
|
||||
|
||||
If you are not sure what to do about `Reset_Mode` & `tag_samba` & `watchtower_autoupdate` leave them as they are.
|
||||
<br>
|
||||
<br>
|
||||
### 3. Deploy using a Git repository
|
||||
|
||||
Choose `Repository` option as building method.
|
||||
|
||||
**Reposity URL:**
|
||||
```
|
||||
{{page.repository_url}}
|
||||
```
|
||||
<br>
|
||||
**Compose path:**
|
||||
```
|
||||
{{page.compose_path}}
|
||||
```
|
||||
<br>
|
||||
<br>
|
||||
Example:
|
||||

|
||||
<br>
|
||||
<br>
|
||||
### 4. Testing
|
||||
<br>
|
||||
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`
|
BIN
assets/images/samba-logo.png
Normal file
BIN
assets/images/samba-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 129 KiB |
BIN
assets/images/samba_example.png
Normal file
BIN
assets/images/samba_example.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 104 KiB |
Loading…
x
Reference in New Issue
Block a user