-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (49 loc) · 1.07 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
version: '3'
volumes:
pgdata:
driver: local
services:
nginx:
image: nginx:latest
ports:
- 80:80
volumes:
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- .:/var/www/html:ro
depends_on:
- php
pgsql:
image: postgres:latest
expose:
- 5432
volumes:
- pgdata:/var/lib/postgresql/data/
environment:
POSTGRES_PASSWORD: Wibble123!
selenium:
image: selenium/standalone-firefox:2.53.1-beryllium
expose:
- 4444
builtin:
build: ./docker/builtin/
expose:
- 8000
volumes:
- .:/var/www/html
depends_on:
- pgsql
php:
build: ./docker/php/
expose:
- 9000
volumes:
- .:/var/www/html
depends_on:
- pgsql
- mailcatcher
mailcatcher:
image: rylwin/mailcatcher
ports:
- 1080:1080
expose:
- 1025