forked from OpenNeuroOrg/openneuro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·113 lines (102 loc) · 2.35 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
# docker compose versions
version: '2.2'
# shared volumes
volumes:
project:
services:
# mongodb
mongo:
image: mongo:3.6
restart: always
# Redis
redis:
image: redis:alpine
restart: always
# web app bundle build
app:
image: openneuro/app:${CRN_APP_TAG}
volumes:
- project:/srv/packages/openneuro-app/dist
env_file: ./config.env
# crn node server
server:
image: openneuro/server:${CRN_SERVER_TAG}
volumes:
- ${PERSISTENT_DIR}/bids-core/persistent/data:/srv/bids-core/persistent/data
- ${PERSISTENT_DIR}/crn-server/persistent:/srv/persistent
env_file: ./config.env
depends_on:
- redis
- mongo
- datalad
restart: always
# worker
worker:
image: openneuro/server:${CRN_SERVER_TAG}
command:
- node
- /srv/worker.js
volumes:
- ${PERSISTENT_DIR}/bids-core/persistent/data:/srv/bids-core/persistent/data
- ${PERSISTENT_DIR}/crn-server/persistent:/srv/persistent
env_file: ./config.env
restart: always
# datalad Python backend
datalad:
image: openneuro/datalad-service:${DATALAD_SERVICE_TAG}
volumes:
- ${PERSISTENT_DIR}/datalad:/datalad
- ./datalad-key:/datalad-key
env_file: ./config.env
depends_on:
- celery
restart: always
init: true
# celery Python backend
celery:
image: openneuro/datalad-service:${DATALAD_SERVICE_TAG}
command:
- celery
- -A
- datalad_service.worker
- worker
- -Q
- dataset-worker-0
- -l
- info
- -c
- "1"
volumes:
- ${PERSISTENT_DIR}/datalad:/datalad
- ./datalad-key:/datalad-key
restart: always
env_file: ./config.env
init: true
flower:
image: openneuro/datalad-service:${DATALAD_SERVICE_TAG}
command:
- flower
- -A
- datalad_service.worker
- --broker
- redis://redis
env_file: ./config.env
restart: always
ports:
- "5555:5555"
# nginx - static file serving and service proxy
nginx:
image: nginx
volumes:
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./nginx/.htpasswd:/etc/nginx/.htpasswd:ro
- project:/srv/app/dist
- ./acme:/acme
- ${SSL_DIR}:/etc/nginx/ssl
ports:
- "80:80"
- "8110:8110"
- "443:443"
depends_on:
- server
- datalad