Skip to content

Commit

Permalink
Use -dbURI parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Jun 25, 2024
1 parent b5f2be7 commit f405666
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ El Orion Context Broker se puede iniciar y conectar a la red empleando el siguie

```console
docker run -d --name fiware-orion -h orion --network=fiware_default \
-p 1026:1026 fiware/orion -dbhost mongo-db
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
```

> **Nota:** Si desea limpiar el entorno y empezar de nuevo puede hacerlo con los siguientes comandos:
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Orion Context Broker は、次のコマンドを使用して起動し、ネッ

```console
docker run -d --name fiware-orion --network=fiware_default \
-p 1026:1026 fiware/orion -dbhost mongo-db
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
```

> **** : クリーンアップして再び開始したい場合は、以下のコマンドを使用して行う
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ The Orion Context Broker can be started and connected to the network with the fo

```console
docker run -d --name fiware-orion -h orion --network=fiware_default \
-p 1026:1026 fiware/orion -dbhost mongo-db
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
```

> [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion README.pt.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ O Orion Context Broker pode ser iniciado e ligado à rede com o seguinte comando

```console
docker run -d --name fiware-orion -h orion --network=fiware_default \
-p 1026:1026 fiware/orion -dbhost mongo-db
-p 1026:1026 fiware/orion -dbURI mongodb://mongo-db
```

> **Nota**: Se quiseres limpar e recomeçar, podes fazê-lo com os seguintes comandos
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
- default
ports:
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
command: -dbhost mongo-db -logLevel DEBUG -noCache
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
healthcheck:
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
interval: 5s
Expand Down

0 comments on commit f405666

Please sign in to comment.