# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # version: "3.8" services: apisix-dashboard: image: apache/apisix-dashboard:latest volumes: - ./apisix/dashboard_conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml ports: - "9000:9000" deploy: resources: reservations: cpus: '0.05' memory: 100M limits: cpus: '0.20' memory: 500M update_config: failure_action: rollback placement: constraints: - 'node.role == manager' networks: - diyue-network apisix: image: apache/apisix:latest volumes: - ./apisix/apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro depends_on: - etcd ports: - "9180:9180/tcp" - "9080:9080/tcp" - "9091:9091/tcp" - "9443:9443/tcp" - "9092:9092/tcp" deploy: resources: reservations: cpus: '0.10' memory: 200M limits: cpus: '0.45' memory: 1024M update_config: failure_action: rollback placement: constraints: - 'node.role == manager' networks: - diyue-network etcd: image: bitnami/etcd:latest volumes: - etcd_data:/bitnami/etcd environment: ETCD_ENABLE_V2: "true" ALLOW_NONE_AUTHENTICATION: "yes" ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379" ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379" ports: - "2379:2379/tcp" deploy: resources: reservations: cpus: '0.05' memory: 150M limits: cpus: '0.30' memory: 800M update_config: failure_action: rollback placement: constraints: - 'node.role == manager' networks: - diyue-network prometheus: image: prom/prometheus:latest volumes: - ./apisix/prometheus_conf/prometheus.yml:/etc/prometheus/prometheus.yml ports: - "9093:9090" deploy: resources: reservations: cpus: '0.05' memory: 150M limits: cpus: '0.30' memory: 400M update_config: failure_action: rollback placement: constraints: - 'node.role == manager' networks: - diyue-network grafana: image: grafana/grafana:latest ports: - "3010:3000" volumes: - "./apisix/grafana_conf/provisioning:/etc/grafana/provisioning" - "./apisix/grafana_conf/dashboards:/var/lib/grafana/dashboards" - "./apisix/grafana_conf/config/grafana.ini:/etc/grafana/grafana.ini" deploy: resources: reservations: cpus: '0.05' memory: 150M limits: cpus: '0.30' memory: 400M update_config: failure_action: rollback placement: constraints: - 'node.role == manager' networks: - diyue-network networks: diyue-network: driver: overlay attachable: true volumes: etcd_data: driver: local