mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 23:12:56 +00:00
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
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
# Pick your favorite docker-stacks image
|
||||
FROM jupyter/minimal-notebook:latest
|
||||
FROM jupyter/minimal-notebook:2d125a7161b5
|
||||
|
||||
USER jovyan
|
||||
|
||||
|
@@ -2,7 +2,8 @@ This folder contains a Makefile and a set of supporting files demonstrating how
|
||||
|
||||
## Prerequisites
|
||||
|
||||
* make 3.81+
|
||||
* make 3.81+
|
||||
* Ubuntu users: Be aware of [make 3.81 defect 483086](https://bugs.launchpad.net/ubuntu/+source/make-dfsg/+bug/483086) which exists in 14.04 LTS but is fixed in 15.04+
|
||||
* docker-machine 0.5.0+
|
||||
* docker 1.9.0+
|
||||
|
||||
@@ -109,4 +110,4 @@ Yes, sorry Windows users. It got the job done for a simple example. We can certa
|
||||
|
||||
### Are there any other options?
|
||||
|
||||
Yes indeed. `cat Makefile` and enjoy.
|
||||
Yes indeed. `cat` the Makefiles and look at the target parameters.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
virtualbox-vm: VIRTUALBOX_CPU_COUNT?=4
|
||||
virtualbox-vm: VIRTUALBOX_DISK_SIZE?=100000
|
||||
virtualbox-vm: VIRTUALBOX_MEMORY_SIZE?=4096
|
||||
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)
|
||||
|
Reference in New Issue
Block a user