forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.integration_tests.yml
59 lines (59 loc) · 2.03 KB
/
docker-compose.override.integration_tests.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
---
version: '3.7'
services:
integration-tests:
build:
context: ./
dockerfile: Dockerfile.integration-tests
image: defectdojo/defectdojo-integration-tests:${INTEGRATION_TESTS_VERSION:-latest}
depends_on:
- nginx
- uwsgi
entrypoint: ['/wait-for-it.sh', 'mysql:3306', '-t', '30', '--', '/app/docker/entrypoint-integration-tests.sh']
volumes:
- '.:/app:z'
- defectdojo_media_unittest:${DD_MEDIA_ROOT:-/app/media}
environment:
DD_BASE_URL: 'http://nginx:8080/'
DD_ADMIN_USER: ${DD_ADMIN_USER:-admin}
DD_ADMIN_PASSWORD: ${DD_ADMIN_PASSWORD:-AdminsLoveIntegrationtests!}
DD_SECRET_KEY: ${DD_SECRET_KEY:-.}
nginx:
volumes:
- defectdojo_media_unittest:/usr/share/nginx/html/media
uwsgi:
entrypoint: ['/wait-for-it.sh', 'mysql:3306', '-t', '30', '--', '/entrypoint-uwsgi-dev.sh']
volumes:
- '.:/app:z'
- defectdojo_media_unittest:${DD_MEDIA_ROOT:-/app/media}
environment:
DD_DEBUG: 'True'
DD_DATABASE_URL: ${DD_TEST_DATABASE_URL:-mysql://defectdojo:defectdojo@mysql:3306/test_defectdojo}
DD_SECRET_KEY: ${DD_SECRET_KEY:-.}
celerybeat:
environment:
DD_DATABASE_URL: ${DD_TEST_DATABASE_URL:-mysql://defectdojo:defectdojo@mysql:3306/test_defectdojo}
celeryworker:
environment:
DD_DATABASE_URL: ${DD_TEST_DATABASE_URL:-mysql://defectdojo:defectdojo@mysql:3306/test_defectdojo}
initializer:
environment:
DD_INITIALIZE: 'true'
DD_DATABASE_URL: ${DD_TEST_DATABASE_URL:-mysql://defectdojo:defectdojo@mysql:3306/test_defectdojo}
DD_ADMIN_PASSWORD: ${DD_ADMIN_PASSWORD:-AdminsLoveIntegrationtests!}
DD_SECRET_KEY: ${DD_SECRET_KEY:-.}
volumes:
- '.:/app:z'
mysql:
ports:
- target: 3306
published: 3306
protocol: tcp
mode: host
environment:
MYSQL_DATABASE: ${DD_TEST_DATABASE_NAME:-test_defectdojo}
volumes:
- defectdojo_data_integration_tests:/var/lib/mysql
volumes:
defectdojo_data_integration_tests: {}
defectdojo_media_unittest: {}