-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
64 lines (60 loc) · 1.28 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
version: '2'
services:
postgres:
image: postgres:9.6
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: "m4U6ctWpEZE801T"
POSTGRES_USER: "examibur"
networks:
- examibur
tomcat:
build:
dockerfile: ./Dockerfile.tomcat-dev
context: ./docker/
restart: always
links:
- postgres
ports:
- 8080:8080
- 8000:8000
volumes:
- ./examibur/webapps/:/usr/local/tomcat/webapps/:z
- ./examibur/jacoco/:/var/jacoco/:z
environment:
DB_HOST: "postgres"
DB_USER: "examibur"
DB_PASSWORD: "m4U6ctWpEZE801T"
LOG_LEVEL: "debug"
LOG_FILE: "/usr/local/tomcat/logs/examibur.log"
networks:
- examibur
selenium-hub:
image: selenium/hub:3.4.0
restart: always
environment:
GRID_TIMEOUT: "10"
networks:
- examibur
selenium-firefox:
image: selenium/node-firefox:3.4.0
restart: always
environment:
HUB_PORT_4444_TCP_ADDR: selenium-hub
HUB_PORT_4444_TCP_PORT: 4444
networks:
- examibur
website:
user: jekyll
build:
dockerfile: ./Dockerfile.jekyll
context: ./docker/
ports:
- 4000:4000
volumes:
- ./docs/:/src/:Z
command: jekyll serve -d public
networks:
examibur: