You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
640 B
YAML
30 lines
640 B
YAML
version: '3'
|
|
|
|
services:
|
|
jupyterlab:
|
|
# image: androiddrew/jupyterlab:r36.4.0
|
|
image: androiddrew/jupyterlab:r36.4.0-extended
|
|
runtime: nvidia
|
|
ports:
|
|
- 18888:8888
|
|
command:
|
|
- "/bin/sh"
|
|
- "-c"
|
|
- "/start_jupyter && sleep infinity"
|
|
environment:
|
|
# - JUPYTER_ROOT=/jupyterlab
|
|
- JUPYTER_PORT=8888
|
|
- JUPYTER_LOGS=/jupyterlab/jupyterlab.log
|
|
- JUPYTER_PASSWORD=notebooks
|
|
volumes:
|
|
- /opt/jupyterlab/:/jupyterlab
|
|
- /opt/jupyterlab/data:/data
|
|
restart: unless-stopped
|
|
networks:
|
|
- jupyter-docker
|
|
|
|
networks:
|
|
jupyter-docker:
|
|
external: false
|
|
|