-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdocker-compose.yaml
110 lines (91 loc) · 2.66 KB
/
docker-compose.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
108
109
110
version: "3"
services:
build:
build: .
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
redis:
image: redis:latest
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: postgres
mysql:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: app
nginx:
image: nginx
mongodb:
image: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
rabbitmq:
image: rabbitmq:3-management-alpine
memcached:
image: docker.io/bitnami/memcached:1
elasticsearch:
image: docker.io/bitnami/elasticsearch:8
aerospike:
image: aerospike/aerospike-server-enterprise
test-redis:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=redis -p=6379 -t=60 -h=redis
depends_on:
- build
- redis
test-tcp:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=tcp -h=redis -p=6379 -t=60
depends_on:
- build
- redis
test-postgres:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=postgres -h=postgres -p=5432 -t=60 -u=postgres -P=postgres -ssl=disable
depends_on:
- build
- postgres
test-mysql:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=mysql -h=mysql -p=3306 -t=60 -u=root -P=secret -n=app
depends_on:
- build
- mysql
test-http:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=http -h=http://nginx/ -t=60 -status-code=200 -http-text="Welcome to nginx!"
depends_on:
- build
- nginx
test-mongodb:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=mongo -p=27017 -t=60 -u=root -P=root -h=mongodb
depends_on:
- build
- mongodb
test-rabbitmq:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=rabbitmq -p=5672 -t=60 -u=guest -P=guest -h=rabbitmq
depends_on:
- build
- rabbitmq
test-memcached:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=memcached -h=memcached -p=11211 -t=60
depends_on:
- build
- memcached
test-elasticsearch:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=elasticsearch -h=http://elasticsearch -p=9200 -t=60
depends_on:
- build
- elasticsearch
test-aerospike:
image: wait4it-pipeline/docker:${PIPELINE_IMAGE_VERSION:-latest}
command: -type=aerospike -h=aerospike -p=3000 -t=60
depends_on:
- build
- aerospike