-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (31 loc) · 877 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (31 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: "3.9"
services:
jupyterlab:
build: ./jupyter_docker
container_name: jupyterlab
restart: always
ports:
- "8889:8889"
volumes:
- ./jupyter_data:/opt/app/data
- ./jupyter_docker/jupyter_notebook_config.py:/root/.jupyter/jupyter_notebook_config.py
- ./:/notebooks
entrypoint: sh -c 'jupyter lab --ip=0.0.0.0 --port=8889 --no-browser --notebook-dir=/opt/app/data --allow-root'
quarto:
build: ./quarto_docker
platform: linux/amd64
container_name: quarto
restart: always
volumes:
- .:/input
stdin_open: true # docker run -i
tty: true # docker run -t
#nginx:
#image: nginx:latest
#container_name: nginx
#restart: unless-stopped
#ports:
#- "1337:80"
#volumes:
#- ./nginx-conf:/etc/nginx/conf.d
#- ./docs:/var/www/html