Docker configuration templates
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.template 331B

12345678910111213141516171819
  1. #version: '3'
  2. #services:
  3. mqtt:
  4. build: mqtt
  5. volumes:
  6. - type: bind
  7. source: /home/dirk/tmp/mqtt/
  8. target: /mosquitto/
  9. ports:
  10. - target: 1883
  11. published: 1883
  12. protocol: tcp
  13. mode: host
  14. - target: 9001
  15. published: 9001
  16. protocol: tcp
  17. mode: host