forked from equinor/oneseismic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
62 lines (58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: '3.0'
services:
fragment:
image: oneseismic.azurecr.io/base:${VERSION:-latest}
build:
context: .
dockerfile: Dockerfile
command: [
"oneseismic-fetch",
"--redis-url", "storage:6379",
"--retries", "1",
]
depends_on:
- storage
result:
image: oneseismic.azurecr.io/base:${VERSION:-latest}
build:
context: .
dockerfile: Dockerfile
ports:
- '8080'
command: [
"oneseismic-result",
"--redis-url", "storage:6379",
]
depends_on:
- storage
environment:
- SIGN_KEY
api:
image: oneseismic.azurecr.io/base:${VERSION:-latest}
build:
context: .
dockerfile: Dockerfile
ports:
- '8080'
command: [
"oneseismic-query",
]
depends_on:
- storage
environment:
- STORAGE_URL
- CLIENT_ID
- LOG_LEVEL
- REDIS_URL=storage:6379
- SIGN_KEY
storage:
image: redis
server:
image: nginx:latest
ports:
- 8080:8080
volumes:
- ./docker-compose-nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- api
- result