mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 12:32:58 +00:00
8 lines
196 B
Python
8 lines
196 B
Python
# Copyright (c) Jupyter Development Team.
|
|
|
|
import os
|
|
|
|
c = get_config()
|
|
c.KernelGatewayApp.ip = os.getenv('INTERFACE', '') or '0.0.0.0'
|
|
c.KernelGatewayApp.port = int(os.getenv('PORT', '') or 8888)
|