14 lines
325 B
YAML
Executable File
14 lines
325 B
YAML
Executable File
version: '3'
|
|
services:
|
|
jupyterhub:
|
|
image: jupyterhub/jupyterhub:latest
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./jupyterhub_config.py:/srv/jupyterhub/jupyterhub_config.py
|
|
- ./init.sh:/init.sh
|
|
ports:
|
|
- 8000:8000
|
|
command: /bin/bash /init.sh 123456
|
|
|