-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 841 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 841 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
version: "2"
services:
postgres:
image: postgres:9.5
volumes:
- /var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
cachet:
build: ./.docker/cachet
ports:
- 80:8000
links:
- postgres:postgres
environment:
- DB_DRIVER=pgsql
- DB_HOST=postgres
- DB_DATABASE=postgres
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- MAIL_DRIVER=null
- MAIL_HOST=null
- MAIL_PORT=null
- MAIL_USERNAME=null
- MAIL_PASSWORD=null
- MAIL_ADDRESS=null
- MAIL_NAME=null
- MAIL_ENCRYPTION=null
depends_on:
- postgres
jenkins:
build: ./.docker/jenkins
volumes:
- /var/jenkins_home
depends_on:
- cachet
ports:
- 8080:8080
- 50000:50000