Files
docker-stacks/examples/make-deploy/virtualbox.makefile
Peter Parente 74ed72a83d Final example cleanup
* Fix missing export on virtualbox-vm settings
* Note about busted make on ubuntu 14.04
* Pin jupyter/minimal-notebook version so example always works
* Bit more of a hint about additional parameters

(c) Copyright IBM Corp. 2015
2015-12-28 12:01:18 -05:00

11 lines
397 B
Makefile

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
virtualbox-vm: export VIRTUALBOX_CPU_COUNT?=4
virtualbox-vm: export VIRTUALBOX_DISK_SIZE?=100000
virtualbox-vm: export 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)