-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (51 loc) · 926 Bytes
/
docker-compose.yml
File metadata and controls
57 lines (51 loc) · 926 Bytes
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
front:
build: .
ports:
- "80:80"
- "443:443"
- "9000:9000"
links:
- mysql:mysql
- mongo:mongo
- memcached:memcached
- redis:redis
- elasticsearch:elasticsearch
- rabbitmq:rabbitmq
volumes:
- ./www:/var/www
- ./sites:/etc/nginx/conf.d
- ./logs:/var/log/supervisor
mysql:
image: mysql
container_name: mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: egsoftware
mongo:
image: mongo
container_name: mongodb
ports:
- "27017:27017"
memcached:
image: memcached
container_name: memcached
ports:
- "11211:11211"
redis:
image: redis
container_name: redis
ports:
- "6379:6379"
elasticsearch:
image: elasticsearch
container_name: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
rabbitmq:
image: rabbitmq:3.6.1-management
container_name: rabbitmq_3.6.1
ports:
- "15672:15672"
- "5672:5672"