-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
47 lines (40 loc) · 907 Bytes
/
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
46
47
version: '3.7'
services:
build_latest:
build:
context: .
dockerfile: docker/latest.dockerfile
image: 'easyalluvial_latest'
build_devel:
build:
context: .
dockerfile: docker/devel.dockerfile
image: 'easyalluvial_devel'
rstudio_latest:
image: 'easyalluvial_latest'
ports:
- '8787:8787'
volumes:
- '.:/home/rstudio/easyalluvial'
command: /init
environment:
PASSWORD: '123'
USER: 'rstudio'
rstudio_devel:
image: 'easyalluvial_devel'
ports:
- '8888:8787'
volumes:
- '.:/home/rstudio/easyalluvial'
command: /init
environment:
PASSWORD: '123'
USER: 'rstudio'
check_devel:
image: 'easyalluvial_devel'
volumes:
- '.:/home/rstudio/easyalluvial'
check_latest:
image: 'easyalluvial_latest'
volumes:
- '.:/home/rstudio/easyalluvial'