mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 12:19:25 +08:00
Keannu Bernasol
f359c7ae0e
Affected files: docs/Command Snippets/Ansible Snippets.md docs/Command Snippets/Docker - Miscellaneous.md
10 lines
No EOL
285 B
Markdown
10 lines
No EOL
285 B
Markdown
- Create CIFS/Samba Volume
|
|
```bash
|
|
docker volume create \
|
|
--driver local \
|
|
--opt type=cifs \
|
|
--opt device=//uxxxxx.your-server.de/backup \
|
|
--opt o=username=USERNAME,password=PASSWORD \
|
|
--name VOLUME_NAME
|
|
```
|
|
*Native CIFS credentials file is not supported with Docker CIFS volumes* |