Initial commit: macOS USB Stick Creator - Docker Compose Web-GUI fuer bootfaehige macOS-Installer
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
macos-usb-tool:
|
||||
build: .
|
||||
container_name: macos-usb-tool
|
||||
# privileged + /dev-Mount sind noetig um USB-Sticks direkt zu partitionieren
|
||||
# (gdisk) und zu beschreiben (dd). Das gibt dem Container vollen Zugriff auf
|
||||
# ALLE Block-Devices des Hosts -- deshalb bindet der Port NUR an 127.0.0.1.
|
||||
privileged: true
|
||||
ports:
|
||||
- "127.0.0.1:8080:8080"
|
||||
volumes:
|
||||
- /dev:/dev
|
||||
- /run/udev:/run/udev:ro
|
||||
- macos_downloads:/data/downloads
|
||||
restart: "no"
|
||||
|
||||
volumes:
|
||||
macos_downloads:
|
||||
Reference in New Issue
Block a user