-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose_app.yml
65 lines (60 loc) · 1.36 KB
/
docker-compose_app.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3.3'
services:
db:
image: mysql:5.7
command: --innodb-log-file-size=500M --innodb_strict_mode=0
restart: "no"
volumes:
- ~/softlinks/mysql_db:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
dev:
depends_on:
- db
image: rapporteket/nnrr-dev:weekly
volumes:
- ~/.ssh:/home/rstudio/.ssh
- ~/.gitconfig:/home/rstudio/.gitconfig
- ~/GIT/nnrr:/home/rstudio/nnrr
- ~/softlinks/mydata:/home/rstudio/mydata
- config:/home/rstudio/rap_config
ports:
- "8787:8787"
- "3838:3838"
dns:
- 8.8.8.8
restart: "no"
environment:
USERID: $USERID
PASSWORD: password
DB_HOST: db
DB_USER: root
DB_PASS: root
app:
depends_on:
- dev
image: rapporteket/nnrr:latest
volumes:
- config:/app/R
ports:
- "3008:3838"
restart: "no"
environment:
R_RAP_CONFIG_PATH: /app/R
R_RAP_INSTANCE: DEV
# USERFULLNAME: Tore Tester Container
# SHINYPROXY_USERNAME: ttesterc
# SHINYPROXY_USERGROUPS: "LC,LC,SC,LC"
# USERORGID: "[1, 2, 3, 4]"
# USEREMAIL: ttesterc@holigong.no
adminer:
depends_on:
- db
image: adminer
restart: "no"
environment:
ADMINER_PLUGINS: frames
ports:
- 8888:8080
volumes:
config: