mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 18:14:05 +00:00
12 lines
314 B
Bash
Executable File
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 "$@"
|