File: docker-compose.yaml

package info (click to toggle)
amqtt 0.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,660 kB
  • sloc: python: 14,565; sh: 42; makefile: 34; javascript: 27
file content (25 lines) | stat: -rw-r--r-- 503 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
services:
  amqtt:
    image: amqtt/amqtt
    container_name: amqtt
    deploy:
      resources:
        limits:
          cpus: '3'
          memory: 8g
        reservations:
          cpus: '3'
          memory: 8g
    ports:
      - "1883:1883"
      - "8080:8080"
      - "8443:8443"
      - "8883:8883"
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3"
    volumes:
      - ./broker.yaml:/app/conf/broker.yaml
      - /etc/letsencrypt:/app/cert:ro