-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (45 loc) · 1.14 KB
/
docker-compose.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
version: '3'
services:
jupyter:
image: pcrpjl
container_name: pcrpjl-jupyter
volumes:
- ./:/workspace/PCRP.jl
working_dir: /workspace/PCRP.jl
ports:
- "8888:8888"
command: jupyter notebook --notebook-dir /workspace/PCRP.jl --ip=0.0.0.0 --allow-root
lab:
image: pcrpjl
container_name: pcrpjl-lab
volumes:
- ./:/workspace/PCRP.jl
working_dir: /workspace/PCRP.jl
ports:
- "8888:8888"
command: jupyter lab --notebook-dir /workspace/PCRP.jl --ip=0.0.0.0 --allow-root
julia:
image: pcrpjl
container_name: pcrpjl-julia
volumes:
- ./:/workspace/PCRP.jl
working_dir: /workspace/PCRP.jl
command: julia --project=/workspace/PCRP.jl
web:
image: pcrpjl
container_name: pcrpjl-packagedocs
volumes:
- ./:/workspace/PCRP.jl
working_dir: /workspace/PCRP.jl
ports:
- "8000:8000"
command: make web
pluto:
image: pcrpjl
container_name: pcrpjl-pluto
volumes:
- ./:/workspace/PCRP.jl
working_dir: /workspace/PCRP.jl
ports:
- "1234:1234"
command: julia -e 'import Pluto; Pluto.run(host="0.0.0.0", port=1234)'