Files
docker-stacks/examples/docker-compose/bin/vbox.sh
2021-05-21 15:49:49 +03:00

12 lines
314 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Set reasonable default VM settings
: "${VIRTUALBOX_CPUS:=4}"
export VIRTUALBOX_CPUS
: "${VIRTUALBOX_MEMORY_SIZE:=4096}"
export VIRTUALBOX_MEMORY_SIZE
docker-machine create --driver virtualbox "$@"