32 líneas
800 B
YAML
32 líneas
800 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
woeusb:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: woeusb:latest
|
|
container_name: woeusb
|
|
privileged: true
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
# Mount directory for Windows ISO files
|
|
- ./isos:/isos
|
|
# Mount directory for output/working files
|
|
- ./output:/output
|
|
devices:
|
|
# This will require manual editing to add your specific USB device
|
|
# Example: /dev/sdb, /dev/sdc, etc.
|
|
# Uncomment and modify the following line:
|
|
- /dev/sdb:/dev/sdb
|
|
environment:
|
|
# Set RUFUS_UEFI_NTFS_VERSION if you need a specific version
|
|
- RUFUS_UEFI_NTFS_VERSION=b30e3b387a3ca7a5e2fddebcc2c8f9538a89b868
|
|
networks:
|
|
- woeusb_network
|
|
|
|
networks:
|
|
woeusb_network:
|
|
driver: bridge
|