-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
70 lines (62 loc) · 1.37 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
version: '2'
services:
web:
image: nginx:latest
ports:
- "8080:80"
volumes:
- ".:/www"
- .docker/config/nginx.conf:/etc/nginx/conf.d/default.conf
networks:
- dev-network
php:
image: hellossx/php-fpm
volumes:
- ".:/www"
networks:
- dev-network
mariadb:
image: mariadb
environment:
- MYSQL_ROOT_PASSWORD=vagrant
- MYSQL_DATABASE=vagrant
ports:
- "3306:3306"
volumes:
- .docker/volumes/mysql:/var/lib/mysql
networks:
- dev-network
beanstalkd:
image: hellossx/beanstalkd
expose:
- "11300"
networks:
- dev-network
beanstalkd_console:
image: agaveapi/beanstalkd-console
environment:
- BEANSTALKD_HOST=beanstalkd
- BEANSTALKD_PORT=11300
expose:
- "80"
ports:
- "8082:80"
networks:
- dev-network
mailhog:
image: mailhog/mailhog
ports:
- "8081:8025"
networks:
- dev-network
redis:
image: tutum/redis
expose:
- "6379"
environment:
- REDIS_PASS=**None**
networks:
- dev-network
networks:
dev-network:
driver: bridge