Add Incoming Request Ingest service with configuration, Docker support, and tests

This commit is contained in:
Simon Larsen
2024-11-21 14:41:37 +00:00
parent 93154aabc7
commit 945cef653c
33 changed files with 5689 additions and 7 deletions

View File

@@ -351,6 +351,24 @@ services:
context: .
dockerfile: ./Ingestor/Dockerfile
incoming-request-ingest:
volumes:
- ./IncomingRequestIngest:/usr/src/app
# Use node modules of the container and not host system.
# https://stackoverflow.com/questions/29181032/add-a-volume-to-docker-but-exclude-a-sub-folder
- /usr/src/app/node_modules/
- ./Common:/usr/src/Common
- /usr/src/Common/node_modules/
ports:
- '9933:9229' # Debugging port.
extends:
file: ./docker-compose.base.yml
service: incoming-request-ingest
build:
network: host
context: .
dockerfile: ./IncomingRequestIngest/Dockerfile
fluent-ingest:
volumes:
- ./FluentIngest:/usr/src/app