mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 18:14:05 +00:00
24 lines
413 B
YAML
24 lines
413 B
YAML
---
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
version: "2"
|
|
|
|
services:
|
|
notebook:
|
|
build: .
|
|
image: my-notebook
|
|
container_name: ${NAME}
|
|
volumes:
|
|
- "work:/home/jovyan/work"
|
|
ports:
|
|
- "${PORT}:8888"
|
|
environment:
|
|
USE_HTTPS: "yes"
|
|
PASSWORD: ${PASSWORD}
|
|
|
|
volumes:
|
|
work:
|
|
external:
|
|
name: ${WORK_VOLUME}
|