-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yaml
58 lines (51 loc) · 1.1 KB
/
docker-compose.yaml
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
version: '3'
services:
base:
build:
context: base
args:
num_jobs: 2
image: ghcr.io/mfem/containers/base:latest
cpu:
build:
context: cpu
args:
num_jobs: 8
hypre_version: 2.27.0
image: ghcr.io/mfem/containers/cpu:latest
cpu-tpls:
build:
context: cpu-tpls
args:
num_jobs: 8
image: ghcr.io/mfem/containers/cpu-tpls:latest
cuda:
build:
context: cuda
args:
num_jobs: 8
cuda_arch_sm: 70
hypre_version: 2.27.0
image: ghcr.io/mfem/containers/cuda:latest
cuda-tpls:
build:
context: cuda-tpls
args:
num_jobs: 8
cuda_arch_sm: 70
image: ghcr.io/mfem/containers/cuda-tpls:latest
developer-cpu:
build:
context: developer
args:
base_image: cpu-tpls
num_jobs: 8
image: ghcr.io/mfem/containers/developer-cpu:latest
developer-cuda:
build:
context: developer
args:
base_image: cuda-tpls
num_jobs: 8
cuda_arch_sm: 70
image: ghcr.io/mfem/containers/developer-cuda:latest