-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.newman.yml
38 lines (37 loc) · 1015 Bytes
/
docker-compose.newman.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
## This is a basic configuration of mainzelliste inside docker
## Futher information about the image is available inside the docker.md file of this repository
## Configuration examples are provided with docker-compose.dev.yml and docker-compose.user.yml
version: "3.1"
services:
db:
image: postgres:9.5-alpine
ports:
- 5432:5432
environment:
- POSTGRES_DB=mainzelliste
- POSTGRES_USER=mainzelliste
- POSTGRES_PASSWORD=PleasePutASafePasswordHere
mainzelliste:
image: mainzelliste:test
build:
context: .
ports:
- 8080:8080
environment:
- ML_REVERSEPROXY_FQDN=mainzelliste
- ML_DB_PASS=NOONEISUSINGME
- ML_API_KEY=NOONEISUSINGME
depends_on:
- db
volumes:
- ./ci/newman_mainzelliste_configs/active_config:/run/secrets/
newman:
image: newman_html_report
build:
context: ./ci
dockerfile: Dockerfile.newman
volumes:
- ./ci:/etc/newman
depends_on:
- db
- mainzelliste