-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.test.yaml
More file actions
90 lines (76 loc) · 2.16 KB
/
docker-compose.test.yaml
File metadata and controls
90 lines (76 loc) · 2.16 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
services:
postgres-test:
image: postgres
restart: always
shm_size: 256mb
environment:
POSTGRES_DB: artemis
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
test-apache-with-xss:
build:
dockerfile: test/images/php-xss/Dockerfile
volumes:
- ./test/data/test-apache-with-xss/:/var/www/html/
test-xss_scanner:
build:
context: .
dockerfile: karton_xss_scanner/Dockerfile
command: python -m unittest discover
env_file: env.test
test-sqlmap:
build:
context: .
dockerfile: karton_sqlmap/Dockerfile
command: python -m unittest discover
env_file: env.test
test-ssl_checks:
build:
context: .
dockerfile: karton_ssl_checks/Dockerfile
command: python -m unittest discover
env_file: env.test
test-redis:
image: redis:7.0.5
test-service-with-sql-injection-mysql:
build: test/images/php-mysql
volumes:
- ./test/data/sql_injection_mysql/:/var/www/html/
test-service-with-sql-injection-mysql-db:
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: root
test-service-with-sql-injection-mysql-clean-urls:
build: test/images/php-mysql
volumes:
- ./test/data/sql_injection_mysql_clean_urls/:/var/www/html/
test-service-with-sql-injection-mysql-clean-urls-db:
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: root
test-service-with-sql-injection-postgres:
build: test/images/php-postgres
volumes:
- ./test/data/sql_injection_postgres/:/var/www/html/
test-service-with-sql-injection-postgres-db:
image: postgres:14.1-alpine
environment:
- POSTGRES_USER=root
- POSTGRES_PASSWORD=root
test-db-for-obsolete-moodle:
image: mariadb:10.6
environment:
MYSQL_ROOT_PASSWORD: rootpass
MYSQL_DATABASE: moodle
MYSQL_USER: moodle
MYSQL_PASSWORD: password
test-service-with-obsolete-moodle:
build: test/images/moodle-obsolete
depends_on:
- test-db-for-obsolete-moodle
test-moodle-scanner:
build:
context: .
dockerfile: karton_moodle_scanner/Dockerfile
command: python -m unittest discover
env_file: env.test