diff --git a/jupyter/docker-compose.yml b/jupyter/docker-compose.yml new file mode 100644 index 0000000..b44e4c5 --- /dev/null +++ b/jupyter/docker-compose.yml @@ -0,0 +1,17 @@ +jupyter: + image: jupyter/datascience-notebook + environment: + - PASSWORD=${PASSWORD} + + +nginx: + image: nginx + links: + - jupyter + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf + - ./letsencrypt.crt:/data/cert.crt + - /letsencrypt.key:/data/key.key + ports: + - 80:80 + - 443:443 \ No newline at end of file