From 4213db0103deed58b9828fd9a4cb7cb9e8314a35 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Fri, 21 Nov 2025 19:10:12 -0500 Subject: [PATCH] Add docker-compose configuration for Jupyter and Nginx services --- jupyter/docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 jupyter/docker-compose.yml 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