-
Notifications
You must be signed in to change notification settings - Fork 68
/
docker-compose.yml
47 lines (42 loc) · 991 Bytes
/
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
version: "3"
services:
febiobase:
platform: "linux/amd64"
build:
context: ./infrastructure
dockerfile: DockerfileBase
image: febiosoftware/febiobase:ubuntu-22.04
working_dir: /FEBio
volumes:
- ./:/FEBio
command: bash
febio: &default
platform: "linux/amd64"
build:
context: ./infrastructure
dockerfile: Dockerfile
image: febiosoftware/febio:ubuntu-22.04
working_dir: /FEBio
volumes:
- ./:/FEBio
command: bash
febio-dev:
<<: *default
container_name: febio-dev
command: bash
febio-build:
<<: *default
container_name: febio-build
command: ci/linux/build.sh
febio-tests:
<<: *default
container_name: febio-tests
command: ci/linux/test.sh
febio-runtime:
build:
context: .
dockerfile: infrastructure/DockerfileRuntime
image: ${DOCKER_REPO}febio-runtime:ubuntu-22.04
working_dir: /FEBio
volumes:
- ./TestSuite/:/FEBio/TestSuite