mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 15:02:57 +00:00
11 lines
371 B
Makefile
11 lines
371 B
Makefile
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
virtualbox-vm: VIRTUALBOX_CPUS?=4
|
|
virtualbox-vm: VIRTUALBOX_DISK_SIZE?=100000
|
|
virtualbox-vm: VIRTUALBOX_MEMORY_SIZE?=4096
|
|
virtualbox-vm: check
|
|
@test -n "$(NAME)" || \
|
|
(echo "ERROR: NAME not defined (make help)"; exit 1)
|
|
@docker-machine create -d virtualbox $(NAME)
|