Add docker-compose configuration for Jupyter and Nginx services

This commit is contained in:
2025-11-21 19:10:12 -05:00
parent 8fab3dee65
commit 4213db0103

View File

@@ -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