-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added env prop for custom %staging profile when running on local docker instance fixes
- Loading branch information
abattagl
authored and
abattagl
committed
Sep 6, 2020
1 parent
74ca315
commit 10ccce1
Showing
5 changed files
with
101 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
version: '3' | ||
services: | ||
edge-service-01: | ||
image: quay.io/qiot/qiot-service | ||
container_name: "edge-service-01" | ||
restart: "no" | ||
ports: | ||
- "8091:8080" | ||
environment: | ||
STATIONSERIAL: "teststationserial01" | ||
STATIONNAME: "teststation01" | ||
STATIONADDRESS: "viale john fitzgerald kennedy 2/D vibo valentia" | ||
SENSORSURL: "http://edge-sensors:5000/" | ||
#DATAHUBURL: "http://datahub-registration:5016/" | ||
#MQTTHOST: "activemq" | ||
#ENABLESSL: "false" | ||
#MQTTPORT: "1883" | ||
edge-service-02: | ||
image: quay.io/qiot/qiot-service | ||
container_name: "edge-service-02" | ||
restart: "no" | ||
ports: | ||
- "8092:8080" | ||
environment: | ||
STATIONSERIAL: "teststationserial02" | ||
STATIONNAME: "teststation02" | ||
STATIONADDRESS: "soriano calabro" | ||
SENSORSURL: "http://edge-sensors:5000/" | ||
#DATAHUBURL: "http://datahub-registration:5016/" | ||
#MQTTHOST: "activemq" | ||
#ENABLESSL: "false" | ||
#MQTTPORT: "1883" | ||
edge-service-03: | ||
image: quay.io/qiot/qiot-service | ||
container_name: "edge-service-03" | ||
restart: "no" | ||
ports: | ||
- "8093:8080" | ||
environment: | ||
STATIONSERIAL: "teststationserial03" | ||
STATIONNAME: "teststation03" | ||
STATIONADDRESS: "minsk" | ||
SENSORSURL: "http://edge-sensors:5000/" | ||
#DATAHUBURL: "http://datahub-registration:5016/" | ||
#MQTTHOST: "activemq" | ||
#ENABLESSL: "false" | ||
#MQTTPORT: "1883" | ||
networks: | ||
default: | ||
external: | ||
name: qiot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: '3' | ||
services: | ||
edge-sensors: | ||
image: quay.io/qiot/qiot-sensors-emulator | ||
container_name: "edge-sensors" | ||
restart: "no" | ||
ports: | ||
- "5000:5000" | ||
environment: | ||
QUARKUS_PROFILE: "staging" | ||
networks: | ||
default: | ||
external: | ||
name: qiot |