- 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
|