forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.unit_tests_cicd.yml
68 lines (68 loc) · 2.1 KB
/
docker-compose.override.unit_tests_cicd.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
---
version: '3.8'
services:
nginx:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'nginx']
volumes:
- defectdojo_media_unit_tests:/usr/share/nginx/html/media
uwsgi:
build:
target: django-unittests
entrypoint: ['/wait-for-it.sh', '${DD_DATABASE_HOST}:${DD_DATABASE_PORT}', '-t', '30', '--', '/app/docker/entrypoint-unit-tests.sh']
volumes:
- '.:/app:z'
- "defectdojo_media_unit_tests:${DD_MEDIA_ROOT:-/app/media}"
environment:
DD_DEBUG: 'True'
DD_TEST_DATABASE_NAME: ${DD_TEST_DATABASE_NAME}
DD_DATABASE_NAME: ${DD_TEST_DATABASE_NAME}
DD_DATABASE_ENGINE: ${DD_DATABASE_ENGINE}
DD_DATABASE_HOST: ${DD_DATABASE_HOST}
DD_DATABASE_PORT: ${DD_DATABASE_PORT}
DD_CELERY_BROKER_SCHEME: 'sqla+sqlite'
DD_CELERY_BROKER_USER: ''
DD_CELERY_BROKER_PASSWORD: ''
DD_CELERY_BROKER_HOST: ''
DD_CELERY_BROKER_PORT: "-1"
DD_CELERY_BROKER_PATH: '/dojo.celerydb.sqlite'
DD_CELERY_BROKER_PARAMS: ''
celerybeat:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'celery beat']
celeryworker:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'celery worker']
initializer:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'initializer']
mysql:
ports:
- target: ${DD_DATABASE_PORT}
published: ${DD_DATABASE_PORT}
protocol: tcp
mode: host
environment:
MYSQL_DATABASE: ${DD_TEST_DATABASE_NAME}
volumes:
- defectdojo_data_unit_tests:/var/lib/mysql
postgres:
ports:
- target: ${DD_DATABASE_PORT}
published: ${DD_DATABASE_PORT}
protocol: tcp
mode: host
environment:
POSTGRES_DB: ${DD_TEST_DATABASE_NAME}
volumes:
- defectdojo_postgres_unit_tests:/var/lib/postgresql/data
rabbitmq:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'rabbitmq']
redis:
image: busybox:1.35.0-musl
entrypoint: ['echo', 'skipping', 'redis']
volumes:
defectdojo_data_unit_tests: {}
defectdojo_postgres_unit_tests: {}
defectdojo_media_unit_tests: {}