Skip to content

Commit

Permalink
Merge pull request #792 from telefonicaid/task/upgrade_mongo_docker
Browse files Browse the repository at this point in the history
upgrade mongo docker-compose dev
  • Loading branch information
fgalan authored Dec 11, 2023
2 parents a26c616 + 4124745 commit 8bdba96
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ library's GitHub repository.
This project is part of [FIWARE](https://www.fiware.org/). For more information check the FIWARE Catalogue entry for the
[IoT Agents](https://github.com/Fiware/catalogue/tree/master/iot-agents).

| :books: [Documentation](https://fiware-iotagent-json.readthedocs.io) | :mortar_board: [Academy](https://fiware-academy.readthedocs.io/en/latest/iot-agents/idas) | <img style="height:1em" src="https://quay.io/static/img/quay_favicon.png"/> [quay.io](https://quay.io/repository/fiware/iotagent-json) | :whale: [Docker Hub](https://hub.docker.com/r/telefonicaiot/iotagent-json/) | :dart: [Roadmap](https://github.com/telefonicaid/iotagent-json/blob/master/docs/roadmap.md) |
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | --- |
| :books: [Documentation](https://fiware-iotagent-json.readthedocs.io) | :mortar_board: [Academy](https://fiware-academy.readthedocs.io/en/latest/iot-agents/idas) | <img style="height:1em" src="https://quay.io/static/img/quay_favicon.png"/> [quay.io](https://quay.io/repository/fiware/iotagent-json) | :whale: [Docker Hub](https://hub.docker.com/r/telefonicaiot/iotagent-json/) | :dart: [Roadmap](https://github.com/telefonicaid/iotagent-json/blob/master/docs/roadmap.md) |
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |


## Contents
Expand Down Expand Up @@ -115,9 +115,9 @@ All the tests are designed to test end-to-end scenarios, and there are some requ
To run requirements you can type:

```
docker run -d -p 27017:27017 --hostname mongo --name mongo mongo:4.4.19
docker run -d -p 1883:1883 -l mosquitto eclipse-mosquitto:1.6.15
docker run -d -p 5672:5672 --hostname my-rabbit --name some-rabbit rabbitmq:3.11.13
docker run -d -p 27017:27017 --hostname mongo --name mongo mongo:6.0.12
docker run -d -p 1883:1883 --hostname mosquitto --name mosquitto eclipse-mosquitto:1.6.15
docker run -d -p 5672:5672 --hostname rabbit --name rabbit rabbitmq:3.11.13
```

---
Expand Down
17 changes: 17 additions & 0 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: "3"

services:
mongo:
image: mongo:6.0.12
ports:
- "27017:27017"

mosquitto:
image: eclipse-mosquitto:1.6.15
ports:
- "1883:1883"

rabbit:
image: rabbitmq:3.11.13
ports:
- "5672:5672"

0 comments on commit 8bdba96

Please sign in to comment.