Skip to content
Snippets Groups Projects
Commit 98244cd3 authored by Rodrigo Goncalves's avatar Rodrigo Goncalves
Browse files

Inclusin of SmartDataContext ingress into docker compose

parent c885e36e
No related branches found
No related tags found
No related merge requests found
...@@ -15,4 +15,7 @@ prometheus/ ...@@ -15,4 +15,7 @@ prometheus/
wavs/ wavs/
zips/ zips/
/dev-certificates /dev-certificates
.idea .idea
\ No newline at end of file /docker/ingress/config/*.crt
/docker/ingress/config/*.pem
/docker/ingress/config/*.key
\ No newline at end of file
...@@ -68,6 +68,13 @@ services: ...@@ -68,6 +68,13 @@ services:
build: ./context/ build: ./context/
env_file: env_file:
- docker/variables.env - docker/variables.env
smartdata-context-ingress:
build: ./ingress/
env_file:
- docker/variables.env
volumes:
- ./docker/ingress/config:/app/config
volumes: volumes:
certificates: certificates:
mariadb: mariadb:
......
{
"import-tikiwiki-test": {
"command": "tikiwiki-import test",
"schedule": "* * * * *"
}
}
\ No newline at end of file
{
"domains": {
"test" : {
"certificate": "./config/test.crt",
"key": "./config/test.key",
"api": "https://172.18.0.1",
"trackers": {
"vehicleList": "Vehicle List",
"vehicleMaintenancePlan": "Vehicle Maintenance Plan",
"vehicleMaintenanceReport": "Vehicle Maintenance Report",
"vehicleMaintenanceReportErrorCodes": "Vehicle Failure"
}
}
}
}
\ No newline at end of file
...@@ -23,3 +23,10 @@ MONGO_USERNAME=smartdatacontext ...@@ -23,3 +23,10 @@ MONGO_USERNAME=smartdatacontext
MONGO_PASSWORD=smartdatacontext MONGO_PASSWORD=smartdatacontext
MONGO_DATABASE=smartdatacontext MONGO_DATABASE=smartdatacontext
MONGO_HOST=mongo MONGO_HOST=mongo
# TikiWiki
TIKIWIKIDB_HOST=172.18.0.1
TIKIWIKIDB_PORT=3307
TIKIWIDB_DATABASE=tikiwiki
TIKIWIKDB_USERNAME=tikiwiki
TIKIWIKIDB_PASSWORD=tikiwiki
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment