jupyter_notebook_config.py
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# https://github.com/jupyter/docker-stacks/blob/master/base-notebook/jupyter_notebook_config.py
c = get_config() # noqa: F821
c.ServerApp.ip = '0.0.0.0'
c.ServerApp.port = 8888
c.ServerApp.open_browser = True
# https://github.com/jupyter/notebook/issues/3130
c.FileContentsManager.delete_to_trash = False