-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (42 loc) · 1.12 KB
/
docker-compose.yml
File metadata and controls
44 lines (42 loc) · 1.12 KB
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
version: '3.2'
services:
fenicsr13_release:
image: registry.git.rwth-aachen.de/lamboo/fenicsr13:latest
working_dir: /home/fenics/shared
volumes:
- type: bind
source: .
target: /home/fenics/shared
- type: volume
source: instant-cache
target: /home/fenics/.cache
volume:
nocopy: true
stdin_open: true
tty: true
shm_size: "4000m" # MPI issue https://github.com/FEniCS/dolfinx/issues/994
fenicsr13_debug:
build:
context: .
dockerfile: Dockerfile
working_dir: /home/fenics/shared
volumes:
# The following fails if folder not found => removed
# - ~/.gitconfig:/etc/gitconfig:ro # copy Git config to commit correctly
- type: bind
source: .
target: /home/fenics/shared
- type: volume
source: instant-cache
target: /home/fenics/.cache
volume:
nocopy: true
stdin_open: true
tty: true
shm_size: "10000m" # MPI issue https://github.com/FEniCS/dolfinx/issues/994
ulimits:
nofile:
soft: 65536
hard: 65536
volumes:
instant-cache: