-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
99 lines (93 loc) · 2.4 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
version: "3.3"
# Building:
#
# $ docker-compose up --no-start --build
#
services:
#--------------------------------------------------------------------------#
# Geant4 container
geant4:
image: geantx/geant4
stdin_open: true
tty: true
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMG: "ubuntu"
BASE_TAG: "latest"
COMPILER_TYPE: "gcc"
COMPILER_VERSION: "7"
BUILD_TYPE: "RelWithDebInfo"
TIMEMORY: "ON"
SOFTWARE: "geant4"
#--------------------------------------------------------------------------#
# GeantV container
geantv:
image: geantx/geantv
stdin_open: true
tty: true
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMG: "ubuntu"
BASE_TAG: "latest"
COMPILER_TYPE: "gcc"
COMPILER_VERSION: "7"
BUILD_TYPE: "RelWithDebInfo"
TIMEMORY: "ON"
SOFTWARE: "geantv"
#--------------------------------------------------------------------------#
# GeantX development container
geantx-dev:
image: geantx/geantx-dev
stdin_open: true
tty: true
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMG: "nvidia/cuda"
BASE_TAG: "10.1-devel-ubuntu18.04"
COMPILER_TYPE: "gcc"
COMPILER_VERSION: "7"
BUILD_TYPE: "RelWithDebInfo"
TIMEMORY: "ON"
SOFTWARE: "geantx-dev"
REQUIRE_CUDA_VERSION: "10.1"
#--------------------------------------------------------------------------#
# GeantX development container
geantx-dev-edge:
image: geantx/geantx-dev:edge
stdin_open: true
tty: true
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMG: "nvidia/cuda"
BASE_TAG: "latest"
COMPILER_TYPE: "gcc"
COMPILER_VERSION: "7"
BUILD_TYPE: "RelWithDebInfo"
TIMEMORY: "ON"
SOFTWARE: "geantx-dev"
REQUIRE_CUDA_VERSION: "10.1"
#--------------------------------------------------------------------------#
# Geant4 + GeantV container
geant4v:
image: geantx/geant4v
stdin_open: true
tty: true
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMG: "geantx/geant4"
BASE_TAG: "latest"
COMPILER_TYPE: "gcc"
COMPILER_VERSION: "7"
BUILD_TYPE: "RelWithDebInfo"
TIMEMORY: "ON"
SOFTWARE: "geant4v"