-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
89 lines (78 loc) · 1.52 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
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
version: '3.5'
services:
mongo:
container_name: mongo
image: mongo:4-xenial
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: mongo
MONGO_INITDB_ROOT_PASSWORD: mongo
networks:
- development
redis:
container_name: redis
image: redis:5
ports:
- 6379:6379
networks:
- development
elasticsearch:
container_name: elasticsearch
image: elasticsearch:7.0.0
ports:
- 9200:9200
networks:
- development
postgres:
container_name: postgres
image: postgres:11-alpine
ports:
- 5432:5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
networks:
- development
mariadb:
container_name: mariadb
image: mariadb:10
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: mariadb
MYSQL_USER: mariadb
MYSQL_PASSWORD: mariadb
networks:
- development
mysql:
container_name: mysql
image: mysql:5.7
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
networks:
- development
cassandra:
container_name: cassandra
image: cassandra:3
ports:
- 9160:9160
- 9042:9042
- 9142:9142
networks:
- development
jenkins:
container_name: jenkins
image: jenkins/jenkins:lts-alpine
ports:
- 8080:8080
- 50000:50000
networks:
- development
networks:
development:
name: development