Files
stellars-jupyterhub-ds/extra/traefik-host-based-routing/compose_cifs.yml
stellarshenson 45cb18da4d feat: enhance traefik-host-based-routing with CIFS and cert installers
- 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
2026-01-16 16:27:45 +01:00

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