-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.tests.yaml
107 lines (102 loc) · 2.65 KB
/
docker-compose.tests.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
version: '3'
services:
api:
build:
context: .
dockerfile: ./api/Dockerfile.dev
ports:
- 8000:8000
volumes:
- ./api/tests:/app/api/tests
- ./api/src:/app/api/src
- ./utils/src:/app/utils/src
- ./logs/api:/var/log/app
environment:
RUST_LOG: debug
DATABASE_URL: "postgres://myuser:mypassword@postgres:5432/mydb"
JWT_EXPIRED_IN: 60
JWT_MAX_AGE: 3600
JWT_SECRET: api-secret-1234
KAFKA_URL: kafka:29092
CORS_ORIGIN: http://localhost:3000
PORT: 8000
depends_on:
postgres:
condition: service_healthy
kafka:
condition: service_healthy
api-migrations:
condition: service_completed_successfully
command: cargo watch -x test
api-migrations:
build:
context: ./api
dockerfile: Dockerfile.migrations
environment:
RUST_LOG: info
DATABASE_URL: "postgres://myuser:mypassword@postgres:5432/mydb"
depends_on:
postgres:
condition: service_healthy
postgres:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
POSTGRES_DB: mydb
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
interval: 5s
timeout: 5s
retries: 10
tmpfs: "/postgres/datalog"
consumer:
build:
context: .
dockerfile: ./consumer/Dockerfile.dev
volumes:
- ./consumer/src:/app/consumer/src
- ./utils/src:/app/utils/src
- ./logs/consumer:/var/log/app
environment:
RUST_LOG: debug
KAFKA_URL: kafka:29092
depends_on:
kafka:
condition: service_healthy
zookeeper:
image: confluentinc/cp-zookeeper:7.3.0
hostname: zookeeper
container_name: zookeeper
ports:
- 2181:2181
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
tmpfs: "/zookeeper/datalog"
kafka:
image: confluentinc/cp-kafka:7.3.0
hostname: kafka
container_name: kafka
ports:
- 9092:9092
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
healthcheck:
test: nc -z localhost 9092 || exit -1
start_period: 15s
interval: 5s
timeout: 5s
retries: 10
tmpfs: "/kafka/datalog"