mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-08 06:00:29 +00:00
25 lines
669 B
YAML
Executable File
25 lines
669 B
YAML
Executable File
# --------------------------------------------------------------------------------------------------
|
|
#
|
|
# Stellars Jupyterhub DS Platform
|
|
# Project Home: https://github.com/stellarshenson/stellars-jupyterhub-ds
|
|
# This file adds GPU support to compose.yml services
|
|
#
|
|
# --------------------------------------------------------------------------------------------------
|
|
|
|
services:
|
|
|
|
## adds NVIDIA GPU support to Jupyterhub service
|
|
jupyterhub:
|
|
environment:
|
|
- GPU_SUPPORT_ENABLED=1
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
|
|
# EOF
|
|
|