-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
74 lines (69 loc) · 1.67 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
71
72
73
74
version: '3.1'
services:
DB:
container_name: DB
image: mysql:latest
build: ./db-dump/.
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
- MYSQL_ROOT_PASSWORD=root
ports:
- 3307:3306
volumes:
- ./db-dump:/docker-entrypoint-initdb.d
selenium-chrome-standalone:
image: selenium/standalone-chrome:latest
shm_size: 2gb
container_name: selenium-chrome-standalone
ports:
- "4444:4444"
- "7900:7900"
# selenium-test:
# build: ./Selenium-Testing/.
# image: openjdk:19-jdk-alpine3.16
# depends_on:
# - selenium-chrome-standalone
# - DB
# container_name: test-selenium
# environment:
# - HUB_HOST=selenium-chrome-standalone
# - BROWSER=chrome
# - IP=192.168.16.1
# - MODULE=testng.xml
# jenkins:
# image: jenkins/jenkins:lts
# privileged: true
# user: root
# ports:
# - 8080:8080
# - 50000:50000
# container_name: jenkins
# volumes:
# - /home/$DevOps/jenkins_compose/jenkins_configuration:/var/jenkins_home
# - /var/run/docker.sock:/var/run/docker.sock
# ebook:
# container_name: ebookApp
# image: tomcat:8.5-alpine
# depends_on:
# - DB
# build: ./Ebook-project/.
# ports:
# - 8085:8080
# environment:
# DB_HOST: DB
# DB_PORT: 3306
# DB_NAME: ebook_mems
# DB_USER: root
# DB_PASS: root
# external_links:
# - DB
# phpmyadmin:
# depends_on:
# - DB
# image: phpmyadmin/phpmyadmin
# ports:
# - '8081:80'
# environment:
# PMA_HOST: DB
# MYSQL_ROOT_PASSWORD: root