mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-09 06:30:29 +00:00
- Add optional CIFS mount support via compose_cifs.yml and .env - Create install_cert.sh for Linux (multi-distro support) - Enhance install_cert.bat with folder argument and help flags - Fix compose_override.yml stray quote, add idle culler defaults - Enhance generate-certs.sh with generic CN and verification - Update start.sh/stop.sh to support ENABLE_CIFS from .env - Update README with CIFS and certificate installation docs
21 lines
617 B
YAML
21 lines
617 B
YAML
# =============================================================================
|
|
# CIFS Volume Mount - Optional
|
|
# =============================================================================
|
|
#
|
|
# Enable by setting ENABLE_CIFS=1 in .env
|
|
#
|
|
# Update credentials and mount path below before enabling.
|
|
#
|
|
# =============================================================================
|
|
|
|
volumes:
|
|
jupyterhub_shared:
|
|
driver: local
|
|
name: jupyterhub_shared
|
|
driver_opts:
|
|
type: cifs
|
|
device: //nas.example.com/shared
|
|
o: username=YOUR_USERNAME,password=YOUR_PASSWORD,uid=1000,gid=1000,vers=3.0
|
|
|
|
# EOF
|