-
Notifications
You must be signed in to change notification settings - Fork 30
/
docker-compose.yml
47 lines (45 loc) · 1.13 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
41
42
43
44
45
46
version: "3"
services:
api:
image: ${API_DOCKER_REPO}:${API_DOCKER_VERSION}
depends_on:
- postgres
- redis
- timescale
volumes:
- ./:/app
- ./docker/test.yml:/config/codecov.yml
entrypoint:
- ./dev.sh
environment:
- RUN_ENV=DEV
- SETUP__TIMESERIES__ENABLED=${TIMESERIES_ENABLED-true}
# Improves pytest-cov performance in python 3.12
# https://github.com/nedbat/coveragepy/issues/1665#issuecomment-1937075835
- COVERAGE_CORE=sysmon
env_file:
- .testenv
postgres:
image: postgres:14.7-alpine
environment:
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
- POSTGRES_PASSWORD=password
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
tmpfs:
size: 2048M
timescale:
image: timescale/timescaledb-ha:pg14-latest
environment:
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
- POSTGRES_PASSWORD=password
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
tmpfs:
size: 2048M
redis:
image: redis:6-alpine