-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
40 lines (38 loc) · 1.05 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
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: "4000m" # MPI issue https://github.com/FEniCS/dolfinx/issues/994
volumes:
instant-cache: