Last active
September 25, 2017 20:01
-
-
Save D3f0/bad268e28609ce8e5740f2fb8cedc9ec to your computer and use it in GitHub Desktop.
Utilización de Docker Compose para pruebas
This file contains hidden or 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
version: '3' | |
services: | |
mosquitto: | |
image: eclipse-mosquitto | |
ports: | |
- 1883:1883 | |
- 9001:9001 | |
nodered: | |
image: cpswan/node-red | |
ports: | |
- 1880:1880 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment