Skip to content

Commit 3392029

Browse files
authored
Merge pull request #9 from FIWARE/bug/missing_label_master
Adding missing label to IoT-Agent container
2 parents 57f99cb + b25cb9e commit 3392029

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ jspm_packages/
3434
.npm
3535
.eslintcache
3636
*.tgz
37-
.next
37+
.next
38+
.idea

docker-compose.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ version: "3.8"
2020
services:
2121
# Orion is the context broker
2222
orion:
23+
image: quay.io/fiware/orion:${ORION_VERSION}
2324
labels:
2425
org.fiware: 'tutorial'
25-
image: quay.io/fiware/orion:${ORION_VERSION}
2626
hostname: orion
2727
container_name: fiware-orion
2828
depends_on:
@@ -41,6 +41,8 @@ services:
4141
# IoT-Agent is configured for the JSON Protocol
4242
iot-agent:
4343
image: quay.io/fiware/iotagent-json:${JSON_VERSION}
44+
labels:
45+
org.fiware: 'tutorial'
4446
hostname: iot-agent
4547
container_name: fiware-iot-agent
4648
depends_on:
@@ -75,9 +77,9 @@ services:
7577

7678
# Tutorial acts as a series of dummy IoT Sensors over HTTP
7779
tutorial:
80+
image: quay.io/fiware/tutorials.context-provider
7881
labels:
7982
org.fiware: 'tutorial'
80-
image: quay.io/fiware/tutorials.context-provider
8183
hostname: iot-sensors
8284
container_name: fiware-tutorial
8385
depends_on:
@@ -112,9 +114,9 @@ services:
112114

113115
# Database
114116
mongo-db:
117+
image: mongo:${MONGO_DB_VERSION}
115118
labels:
116119
org.fiware: 'tutorial'
117-
image: mongo:${MONGO_DB_VERSION}
118120
hostname: mongo-db
119121
container_name: db-mongo
120122
expose:

0 commit comments

Comments
 (0)