This repository was archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
68 lines (68 loc) · 1.88 KB
/
compose.yml
File metadata and controls
68 lines (68 loc) · 1.88 KB
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
version: '2'
services:
#start These services can be disabled without affecting any other services
memcached:
image: memcached:1.4.27-alpine
expose:
- "11211"
command: memcached -p 11211 -m 64
mysql:
image: mysql:5.6.28
expose:
- "3306"
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=homestead
- MYSQL_USER=homestead
- MYSQL_PASSWORD=secret
elasticsearch:
image: elasticsearch:2.4.1
expose:
- "9200"
ports:
- "9200:9200"
#end These services can be disabled without affecting any other services
#start Disabling these services require that you also disable services that depends on the services that you are disabling.
beanstalkd: #Also turn off: workerlaravel
image: rasodu/beanstalkd:v1.10.1
command: beanstalkd -p 11300 -u nobody -b /var/lib/beanstalkd
expose:
- "11300"
redis: #Also turn off: pusher
image: redis:3.2.1-alpine
command: redis-server --appendonly yes
expose:
- "6379"
#end Disabling these services require that you also disable services that depends on the services that you are disabling.
phpfpm:
expose:
- "9000"
httpbackend:
volumes_from:
- phpfpm:ro
depends_on:
- phpfpm
expose:
- "80"
nodejs:
image: rasodu/6nodejs:dev
expose:
- "8080"
https:
depends_on:
- httpbackend
ports:
- "443:443"
- "6001:6001"
- "7001:7001"
- "8080:8080"
volumes:
- etc-letsencrypt:/etc/letsencrypt
volumes:
etc-letsencrypt:
driver: local
networks:
default:
driver: bridge