-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (51 loc) · 1.22 KB
/
docker-compose.yml
File metadata and controls
55 lines (51 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
services:
shared:
build:
context: .
dockerfile: docker/Dockerfile
tty: true
depends_on:
- minio
- postgres
- redis
- timescale
volumes:
- ./shared/:/app/libs/shared/shared
- ./tests/:/app/libs/shared/tests
- ./.coveragerc:/app/libs/shared/.coveragerc
- ./docker/test.yml:/config/codecov.yml
postgres:
image: postgres:14-alpine
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
tmpfs:
size: 1024M
timescale:
image: timescale/timescaledb:latest-pg14
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
tmpfs:
size: 1024M
redis:
image: redis:6-alpine
minio:
image: minio/minio:latest
command: server /export
environment:
- MINIO_ACCESS_KEY=codecov-default-key
- MINIO_SECRET_KEY=codecov-default-secret
volumes:
- type: tmpfs
target: /export
tmpfs:
size: 256M