forked from eroshenkoam/docker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
32 lines (29 loc) · 903 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
32 lines (29 loc) · 903 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
version: '3.4'
services:
selenoid:
image: aerokube/selenoid:latest-release
volumes:
- "${PWD}/init/selenoid:/etc/selenoid"
- "${PWD}/work/selenoid/video:/opt/selenoid/video"
- "${PWD}/work/selenoid/logs:/opt/selenoid/logs"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- OVERRIDE_VIDEO_OUTPUT_DIR=work/selenoid/video
command: ["-conf", "/etc/selenoid/browsers.json", "-video-output-dir", "/opt/selenoid/video", "-log-output-dir", "/opt/selenoid/logs"]
ports:
- "4444:4444"
network_mode: bridge
jenkins:
image: jenkins/jenkins:lts
volumes:
- ${PWD}/work/jenkins:/var/jenkins_home
ports:
- 8000:8080
network_mode: bridge
jira:
image: atlassian/jira-software
volumes:
- "${PWD}/work/jira:/var/atlassian/application-data/jira"
ports:
- "9999:8080"
network_mode: bridge