Evaluation license expires Wed Dec 31 22:00:00 KST 2098
Clone
admin
committed
3 years and 11 months ago
[ Developer Portal ( Based By ARMS ) - Backend ]
[SmartCommit] SP-586 #close #time 1h +review SR @dongmin.lee #comment update datasource to … Show more
master + 3 more
SR-2074 + 5 more
web-module/script/.../monitoring/server/guacd.yml (+44)
admin
45a6c62  
 1version: '3.6'
   2
   3services:
   4
   5  guacd:
   6    image: guacamole/guacd:1.3.0
   7    hostname: guacd
   8    ports:
   9      - "4822:4822"
   10    environment:
   11      - GUACD_LOG_LEVEL=debug
   12    networks: &guacamole-guacd-network
   13      - guacamole_network
   14    deploy:
   15      mode: replicated
   16      replicas: 1
   17      placement:
   18        constraints: [node.role==manager]
   19
   20  guacamole:
   21    image: guacamole/guacamole:1.3.0
   22    ports:
   23      - "8080:8080"
   24    environment:
   25      - MYSQL_HOSTNAME=192.168.25.40
   26      - MYSQL_DATABASE=guacamole130
   27      - MYSQL_USER=root
   28      - MYSQL_PASSWORD=love0618
   29      - GUACD_HOSTNAME=guacd
   30    networks: *guacamole-guacd-network
   31    depends_on:
   32      - guacd   
   33    deploy:
   34      mode: replicated
   35      replicas: 1
   36      placement:
   37        constraints: [node.role==manager]
   38
   39networks:
   40  guacamole_network:
   41    attachable: true
   42#networks:
   43#  guacamole_network:
   44#    driver: overlay