-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.ci.yml
More file actions
40 lines (37 loc) · 925 Bytes
/
docker-compose.ci.yml
File metadata and controls
40 lines (37 loc) · 925 Bytes
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
services:
securecheckplus_server:
container_name: securecheckplus_server
user: "${RUNNER_UID}:${GID}"
build:
context: ./backend
target: dev
env_file: "./backend/.env"
environment:
WORK_DIR: $WORK_DIR
volumes:
- "${WORK_DIR}/backend:/backend"
ports:
- "8005:8000"
depends_on:
- securecheckplus_db
- smtp_mailserver
securecheckplus_db:
image: postgres
restart: always
container_name: securecheckplus_db
env_file: "./backend/.env"
ports:
- "5434:5432"
smtp_mailserver:
image: maildev/maildev
container_name: mailserver
ports:
- "1085:80"
ldap_server:
image: "osixia/openldap:1.5.0"
command: "--copy-service --loglevel debug"
env_file: "./backend/.env"
ports:
- "390:389"
volumes:
- ./assets/ldap/bootstrap:/container/service/slapd/assets/config/bootstrap/ldif/custom