| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | version: "3.4"services:  netmaker:    container_name: netmaker    image: gravitl/netmaker:v0.12.2    volumes:      - dnsconfig:/root/config/dnsconfig      - sqldata:/root/data    cap_add:       - NET_ADMIN      - NET_RAW      - SYS_MODULE    sysctls:      - net.ipv4.ip_forward=1      - net.ipv4.conf.all.src_valid_mark=1    restart: always    environment:      SERVER_HOST: "SERVER_PUBLIC_IP"      SERVER_API_CONN_STRING: "api.NETMAKER_BASE_DOMAIN:443"      SERVER_GRPC_CONN_STRING: "grpc.NETMAKER_BASE_DOMAIN:443"      COREDNS_ADDR: "SERVER_PUBLIC_IP"      GRPC_SSL: "on"      DNS_MODE: "on"      SERVER_HTTP_HOST: "api.NETMAKER_BASE_DOMAIN"      SERVER_GRPC_HOST: "grpc.NETMAKER_BASE_DOMAIN"      API_PORT: "8081"      GRPC_PORT: "50051"      CLIENT_MODE: "on"      MASTER_KEY: "REPLACE_MASTER_KEY"      CORS_ALLOWED_ORIGIN: "*"      DISPLAY_KEYS: "on"      DATABASE: "sqlite"      NODE_ID: "netmaker-server-1"      MQ_HOST: "mq"      HOST_NETWORK: "off"      MANAGE_IPTABLES: "on"      PORT_FORWARD_SERVICES: "mq"      VERBOSITY: "1"    ports:      - "51821-51830:51821-51830/udp"      - "8081:8081"      - "50051:50051"  netmaker-ui:    container_name: netmaker-ui    depends_on:      - netmaker    image: gravitl/netmaker-ui:v0.12.2    links:      - "netmaker:api"    ports:      - "8082:80"    environment:      BACKEND_URL: "https://api.NETMAKER_BASE_DOMAIN"    restart: always  coredns:    depends_on:      - netmaker     image: coredns/coredns    command: -conf /root/dnsconfig/Corefile    container_name: coredns    restart: always    ports:      - "COREDNS_IP:53:53/udp"      - "COREDNS_IP:53:53/tcp"    volumes:      - dnsconfig:/root/dnsconfig  mq:    image: eclipse-mosquitto:2.0.14    container_name: mq    restart: unless-stopped    ports:      - "1883:1883"    volumes:      - /root/mosquitto.conf:/mosquitto/config/mosquitto.conf      - mosquitto_data:/mosquitto/data      - mosquitto_logs:/mosquitto/logvolumes:  sqldata: {}  dnsconfig: {}  mosquitto_data: {}  mosquitto_logs: {}
 |