Docker
You can use Lumier through Docker:
Run a macOS VM (ephemeral)
# Run the container with temporary storage (using pre-built image from Docker Hub)
docker run -it --rm \
--name macos-vm \
-p 8006:8006 \
-e VM_NAME=macos-vm \
-e VERSION=ghcr.io/trycua/macos-sequoia-cua:latest \
-e CPU_CORES=4 \
-e RAM_SIZE=8192 \
trycua/lumier:latest
Access the VM in your browser at http://localhost:8006.
After running the command above, you can access your macOS VM through a web browser (e.g., http://localhost:8006).
Note
With the basic setup above, your VM will be reset when you stop the container (ephemeral mode). This means any changes you make inside the macOS VM will be lost. See the section below for how to save your VM state.
Saving Your VM State
To save your VM state between sessions (so your changes persist when you stop and restart the container), you'll need to set up a storage location:
# First, create a storage directory if it doesn't exist
mkdir -p storage
# Then run the container with persistent storage
docker run -it --rm \
--name lumier-vm \
-p 8006:8006 \
-v $(pwd)/storage:/storage \
-e VM_NAME=lumier-vm \
-e VERSION=ghcr.io/trycua/macos-sequoia-cua:latest \
-e CPU_CORES=4 \
-e RAM_SIZE=8192 \
-e HOST_STORAGE_PATH=$(pwd)/storage \
trycua/lumier:latest
This command creates a connection between a folder on your Mac ($(pwd)/storage
) and a folder inside the Docker container (/storage
). The -v
flag (volume mount) and the HOST_STORAGE_PATH
variable work together to ensure your VM data is saved on your host Mac.
Sharing Files with Your VM
To share files between your Mac and the virtual machine, you can set up a shared folder:
# Create both storage and shared folders
mkdir -p storage shared
# Run with both persistent storage and a shared folder
docker run -it --rm \
--name lumier-vm \
-p 8006:8006 \
-v $(pwd)/storage:/storage \
-v $(pwd)/shared:/shared \
-e VM_NAME=lumier-vm \
-e VERSION=ghcr.io/trycua/macos-sequoia-cua:latest \
-e CPU_CORES=4 \
-e RAM_SIZE=8192 \
-e HOST_STORAGE_PATH=$(pwd)/storage \
-e HOST_SHARED_PATH=$(pwd)/shared \
trycua/lumier:latest
With this setup, any files you place in the shared
folder on your Mac will be accessible from within the macOS VM, and vice versa.
Automating VM Startup with on-logon.sh
You can automatically run scripts when the VM starts up by placing an on-logon.sh
script in the shared folder's lifecycle directory. This is useful for setting up your VM environment each time it starts.
# Create the lifecycle directory in your shared folder
mkdir -p shared/lifecycle
# Create a sample on-logon.sh script
cat > shared/lifecycle/on-logon.sh << 'EOF'
#!/usr/bin/env bash
# Create a file on the desktop
echo "Hello from Lumier!" > /Users/lume/Desktop/hello_lume.txt
# You can add more commands to execute at VM startup
# For example:
# - Configure environment variables
# - Start applications
# - Mount network drives
# - Set up development environments
EOF
# Make the script executable
chmod +x shared/lifecycle/on-logon.sh
The script will be automatically executed when the VM starts up. It runs in the VM context and has access to:
- The
/Users/lume
user directory (home directory in the VM) - The shared folder at
/Volumes/My Shared Files
inside the VM - Any resources available to the VM
This feature enables automation of VM setup without modifying the base VM image.
Configuration Options
When running Lumier, you'll need to configure a few things:
-
Port forwarding (
-p 8006:8006
): Makes the VM's VNC interface accessible in your browser. If port 8006 is already in use, you can use a different port like-p 8007:8006
. -
Environment variables (
-e
): Configure your VM settings:VM_NAME
: A name for your virtual machineVERSION
: The macOS image to useCPU_CORES
: Number of CPU cores to allocateRAM_SIZE
: Memory in MB to allocateHOST_STORAGE_PATH
: Path to save VM state (when using persistent storage)HOST_SHARED_PATH
: Path to the shared folder (optional)
-
Background service: The
lume serve
service should be running on your host (starts automatically when you install Lume using theinstall.sh
script above).