Run a jupyter notebook

This commit is contained in:
Nemo 2019-04-26 03:16:37 +05:30
parent 07d44ca39a
commit 37bb59eda3
1 changed files with 13 additions and 0 deletions

13
jupyter.tf Normal file
View File

@ -0,0 +1,13 @@
module "jupyter" {
name = "jupyter"
source = "modules/container"
image = "jupyter/tensorflow-notebook"
ports = [
{
internal = 8888
external = 1112
ip = "${var.ips["tun0"]}"
},
]
}