This commit is contained in:
2025-10-14 18:28:32 +02:00
parent a5a64e7ae3
commit 58537480a9
2 changed files with 255 additions and 0 deletions

20
Docker/iSCSI.md Normal file
View File

@@ -0,0 +1,20 @@
# iSCSI
Example:
```
version: "3"
services:
app:
image: your-image
volumes:
- myiscsi:/data
volumes:
myiscsi:
driver: local
driver_opts:
type: iscsi
device: "iqn.2025-10.com.example:storage"
o: "addr=192.168.1.100"
```