Skip to content

Commit f405666

Browse files
committed
Use -dbURI parameter
1 parent b5f2be7 commit f405666

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ El Orion Context Broker se puede iniciar y conectar a la red empleando el siguie
127127

128128
```console
129129
docker run -d --name fiware-orion -h orion --network=fiware_default \
130-
-p 1026:1026 fiware/orion -dbhost mongo-db
130+
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
131131
```
132132

133133
> **Nota:** Si desea limpiar el entorno y empezar de nuevo puede hacerlo con los siguientes comandos:

README.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Orion Context Broker は、次のコマンドを使用して起動し、ネッ
148148

149149
```console
150150
docker run -d --name fiware-orion --network=fiware_default \
151-
-p 1026:1026 fiware/orion -dbhost mongo-db
151+
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
152152
```
153153

154154
> **** : クリーンアップして再び開始したい場合は、以下のコマンドを使用して行う

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The Orion Context Broker can be started and connected to the network with the fo
140140

141141
```console
142142
docker run -d --name fiware-orion -h orion --network=fiware_default \
143-
-p 1026:1026 fiware/orion -dbhost mongo-db
143+
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
144144
```
145145

146146
> [!NOTE]

README.pt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ O Orion Context Broker pode ser iniciado e ligado à rede com o seguinte comando
117117

118118
```console
119119
docker run -d --name fiware-orion -h orion --network=fiware_default \
120-
-p 1026:1026 fiware/orion -dbhost mongo-db
120+
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
121121
```
122122

123123
> **Nota**: Se quiseres limpar e recomeçar, podes fazê-lo com os seguintes comandos

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

0 commit comments

Comments
 (0)