make-deploy example: run stacks on docker-machines

(c) Copyright IBM Corp. 2015
This commit is contained in:
Peter Parente / Justin Tyberg
2015-12-10 13:30:15 -05:00
parent 3afdf219f0
commit be926f24a1
5 changed files with 210 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# 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)