Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
68d2d835
Commit
68d2d835
authored
Nov 08, 2020
by
Romain
Committed by
GitHub
Nov 08, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1185 from romainx/update_2020-11-05
Regular update 2020-11-05
parents
712576e0
0f2a7473
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
Makefile
Makefile
+2
-2
base-notebook/Dockerfile
base-notebook/Dockerfile
+3
-3
datascience-notebook/Dockerfile
datascience-notebook/Dockerfile
+1
-1
pyspark-notebook/Dockerfile
pyspark-notebook/Dockerfile
+1
-1
r-notebook/Dockerfile
r-notebook/Dockerfile
+1
-1
No files found.
Makefile
View file @
68d2d835
...
@@ -25,7 +25,7 @@ ALL_IMAGES:=$(ALL_STACKS)
...
@@ -25,7 +25,7 @@ ALL_IMAGES:=$(ALL_STACKS)
# Dockerfile Linter
# Dockerfile Linter
HADOLINT
=
"
${HOME}
/hadolint"
HADOLINT
=
"
${HOME}
/hadolint"
HADOLINT_VERSION
=
"v1.18.
0
"
HADOLINT_VERSION
=
"v1.18.
2
"
help
:
help
:
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
...
@@ -68,7 +68,7 @@ cont-rm-all: ## remove all containers
...
@@ -68,7 +68,7 @@ cont-rm-all: ## remove all containers
-
docker
rm
--force
$(
shell
docker ps
-a
-q
)
2> /dev/null
-
docker
rm
--force
$(
shell
docker ps
-a
-q
)
2> /dev/null
dev/%
:
ARGS?=
dev/%
:
ARGS?=
dev/%
:
DARGS?=
dev/%
:
DARGS?=
-e JUPYTER_ENABLE_LAB=yes
dev/%
:
PORT?=8888
dev/%
:
PORT?=8888
dev/%
:
##
run a foreground container for a stack
dev/%
:
##
run a foreground container for a stack
docker run
-it
--rm
-p
$(PORT)
:8888
$(DARGS)
$(OWNER)
/
$(
notdir
$@
)
$(ARGS)
docker run
-it
--rm
-p
$(PORT)
:8888
$(DARGS)
$(OWNER)
/
$(
notdir
$@
)
$(ARGS)
...
...
base-notebook/Dockerfile
View file @
68d2d835
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Ubuntu 20.04 (focal)
# Ubuntu 20.04 (focal)
# https://hub.docker.com/_/ubuntu/?tab=tags&name=focal
# https://hub.docker.com/_/ubuntu/?tab=tags&name=focal
# OS/ARCH: linux/amd64
# OS/ARCH: linux/amd64
ARG
ROOT_CONTAINER=ubuntu:focal-2020
0925@sha256:2e70e9c81838224b5311970dbf7ed16802fbfe19e7a70b3cbfa3d7522aa285b4
ARG
ROOT_CONTAINER=ubuntu:focal-2020
1008@sha256:1d7b639619bdca2d008eca2d5293e3c43ff84cbee597ff76de3b7a7de3e84956
ARG
BASE_CONTAINER=$ROOT_CONTAINER
ARG
BASE_CONTAINER=$ROOT_CONTAINER
FROM
$BASE_CONTAINER
FROM
$BASE_CONTAINER
...
@@ -129,8 +129,8 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
...
@@ -129,8 +129,8 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
# files across image layers when the permissions change
# files across image layers when the permissions change
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'notebook=6.1.4'
\
'notebook=6.1.4'
\
'jupyterhub=1.
1.0
'
\
'jupyterhub=1.
2.1
'
\
'jupyterlab=2.2.
8
'
&&
\
'jupyterlab=2.2.
9
'
&&
\
conda clean
--all
-f
-y
&&
\
conda clean
--all
-f
-y
&&
\
npm cache clean
--force
&&
\
npm cache clean
--force
&&
\
jupyter notebook
--generate-config
&&
\
jupyter notebook
--generate-config
&&
\
...
...
datascience-notebook/Dockerfile
View file @
68d2d835
...
@@ -70,7 +70,7 @@ RUN conda install --quiet --yes \
...
@@ -70,7 +70,7 @@ RUN conda install --quiet --yes \
'r-nycflights13=1.0*' \
'r-nycflights13=1.0*' \
'r-randomforest=4.6*' \
'r-randomforest=4.6*' \
'r-rcurl=1.98*' \
'r-rcurl=1.98*' \
'r-rmarkdown=2.
4
*' \
'r-rmarkdown=2.
5
*' \
'r-rsqlite=2.2*' \
'r-rsqlite=2.2*' \
'r-shiny=1.5*' \
'r-shiny=1.5*' \
'r-tidyverse=1.3*' \
'r-tidyverse=1.3*' \
...
...
pyspark-notebook/Dockerfile
View file @
68d2d835
...
@@ -51,7 +51,7 @@ USER $NB_UID
...
@@ -51,7 +51,7 @@ USER $NB_UID
# Install pyarrow
# Install pyarrow
RUN
conda
install
--quiet
--yes
--satisfied-skip-solve
\
RUN
conda
install
--quiet
--yes
--satisfied-skip-solve
\
'pyarrow=
1
.0.*'
&&
\
'pyarrow=
2
.0.*'
&&
\
conda clean
--all
-f
-y
&&
\
conda clean
--all
-f
-y
&&
\
fix-permissions
"
${
CONDA_DIR
}
"
&&
\
fix-permissions
"
${
CONDA_DIR
}
"
&&
\
fix-permissions
"/home/
${
NB_USER
}
"
fix-permissions
"/home/
${
NB_USER
}
"
...
...
r-notebook/Dockerfile
View file @
68d2d835
...
@@ -37,7 +37,7 @@ RUN conda install --quiet --yes \
...
@@ -37,7 +37,7 @@ RUN conda install --quiet --yes \
'r-nycflights13=1.0*'
\
'r-nycflights13=1.0*'
\
'r-randomforest=4.6*'
\
'r-randomforest=4.6*'
\
'r-rcurl=1.98*'
\
'r-rcurl=1.98*'
\
'r-rmarkdown=2.
4
*'
\
'r-rmarkdown=2.
5
*'
\
'r-rodbc=1.3*'
\
'r-rodbc=1.3*'
\
'r-rsqlite=2.2*'
\
'r-rsqlite=2.2*'
\
'r-shiny=1.5*'
\
'r-shiny=1.5*'
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment