-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcompose.yml
More file actions
48 lines (42 loc) · 818 Bytes
/
compose.yml
File metadata and controls
48 lines (42 loc) · 818 Bytes
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
services:
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: postgres
tests_common:
build:
context: ./
target: norm_base
volumes:
- .:/usr/src/app
command: testament category common
tests_sqlite:
build:
context: ./
target: norm_sqlite
volumes:
- .:/usr/src/app
command: testament category sqlite
tests_postgres:
build:
context: ./
target: norm_postgres
depends_on:
- postgres
volumes:
- .:/usr/src/app
command: testament category postgres
docs:
build:
context: ./
target: norm_base
volumes:
- .:/usr/src/app
command: nimble docs
book:
build:
context: ./
target: norm_base
volumes:
- .:/usr/src/app
command: nimble book