-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (41 loc) · 1005 Bytes
/
docker-compose.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
version: '3.8'
services:
oxe-web:
image: openxeco-eccc-middleware_oxe-web:local
build:
context: .
dockerfile: oxe-web/.docker/Dockerfile
tty: true
volumes:
- ./oxe-web:/usr/app
- /usr/app/node_modules
command: npm start
ports:
- "3006:3006"
expose:
- '3006'
oxe-api:
image: openxeco-eccc-middleware_oxe-api:local
build:
context: .
dockerfile: oxe-api/.docker/Dockerfile
restart: always
volumes:
- ./oxe-api:/usr/app
ports:
- "5002:5002"
expose:
- '5002'
environment:
DEBUG: "true"
JWT_SECRET_KEY: "some_random_secret"
REG_FORM_REFERENCE: "FORM-ECCC-001"
OPENXECO_API_ENDPOINT: "http://localhost:5000/"
ECCC_API_ENDPOINT: ""
ECCC_API_KEY: "https://dg-cnect-cybersecurity-atlas.acc.fpfis.tech.ec.europa.eu/"
ECCC_HTTP_AUTH_LOGIN: "shared"
ECCC_HTTP_AUTH_PASS: "fpfis2022"
networks:
default:
name: openxeco
external: true