1
0
Fork 0

Initial import

This commit is contained in:
Daniele Tricoli 2022-04-27 19:28:37 +02:00
commit f0470273ec
1 changed files with 22 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
---
version: "3"
services:
jupyter:
image: jupyter/scipy-notebook:latest
container_name: jupyter
environment:
JUPYTER_ENABLE_LAB: ${JUPYTER_ENABLE_LAB}
JUPYTER_TOKEN: ${JUPYTER_TOKEN}
restart: unless-stopped
networks:
- proxy
- default
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.http.routers.jupyter.entrypoints=websecure"
- "traefik.http.routers.jupyter.rule=Host(${HOST})"
networks:
proxy:
external: true