-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
160 lines (147 loc) · 3.51 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
version: '3'
# Notes about this docker-compose file
# the R packages are installed within the rpkgs container
# it uses the 'global' `rpkgs` volumne
# The R packages are not installed by default (i.e., in the Dockerfile)
# if you completely tear and remove all containers/volumnes/etc
# remember to exec into the `rpkgs` container and manually install packages
# there are code examples and links to the scripts in the rpkgs Dockerfile
volumes:
pg_data:
dkw_data:
dkw_conf:
dkw_lib:
shy_apps:
rpkgs:
checkpoint:
dpl7_modules:
dpl7_profiles:
dpl7_themes:
dpl7_sites:
certs:
services:
postgresql:
image: sdal/pg-ldap-ssh-c7
container_name: postgresql
volumes:
- pg_data:/var/lib/pgsql/9.6/data
- /sys/fs/cgroup:/sys/fs/cgroup:ro
cap_add:
- SYS_ADMIN
ports:
- 5433:5432
drupal7:
image: sdal/dpl7
container_name: drupal7
volumes:
- dpl7_modules:/var/www/html/modules
- dpl7_profiles:/var/www/html/profiles
- dpl7_themes:/var/www/html/themes
- dpl7_sites:/var/www/html/sites
- certs:/etc/letsencrypt
cap_add:
- SYS_ADMIN
ports:
- 8383:80
mro:
image: sdal/mro-c7sd_auth
container_name: mro
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- rpkgs:/rpkgs
- checkpoint:/checkpoint
cap_add:
- SYS_ADMIN
rpkgs:
image: sdal/rpkgs-mro-c7sd_auth
container_name: rpkgs
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- rpkgs:/home/rpkgs/rpkgs
- checkpoint:/checkpoint
cap_add:
- SYS_ADMIN
rstudio:
image: sdal/rss-mro-c7sd_auth
container_name: rstudio
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- /home:/home
- rpkgs:/rpkgs
- checkpoint:/checkpoint
cap_add:
- SYS_ADMIN
ports:
- 8788:8787
shiny:
image: sdal/shy-mro-c7sd_auth
container_name: shiny
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- /home:/home
- rpkgs:/rpkgs
- shy_apps:/srv/shiny-server/sdal
- checkpoint:/checkpoint
cap_add:
- SYS_ADMIN
ports:
- 3126:3838
selenium_chrome:
image: selenium/standalone-chrome
container_name: selenium_chrome
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- /home:/home
cap_add:
- SYS_ADMIN
ports:
- 4444:4444
selenium_chrome_chend:
image: selenium/standalone-chrome
container_name: selenium_chrome_chend
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- /etc/group:/etc/group
- /home:/home
cap_add:
- SYS_ADMIN
ports:
- 4440:4444
dokuwiki:
image: sdal/dkw-httpd-ldap-ssh-c7
container_name: dokuwiki
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
- dkw_data:/var/www/html/dokuwiki/data
- dkw_conf:/var/www/html/dokuwiki/conf
- dkw_lib:/var/www/html/dokuwiki/lib
cap_add:
- SYS_ADMIN
ports:
- 8282:80
adminer:
image: sdal/adminer-httpd-ldap-ssh-c7
container_name: adminer
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
cap_add:
- SYS_ADMIN
links:
- postgresql
ports:
- 127.0.0.1:8080:80
# r-cran:
# image: sdal/r-ldap-ssh-c7
# container_name: r-cran
# volumes:
# - /sys/fs/cgroup:/sys/fs/cgroup:ro
# - /etc/group:/etc/group
# - rpkgs:/rpkgs
# - checkpoint:/checkpoint
# cap_add:
# - SYS_ADMIN