From eb1be8df71707e02675f55b4649060dc47f77de6 Mon Sep 17 00:00:00 2001 From: Bryant Date: Tue, 30 Jan 2024 17:08:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20docker-compose.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 167 +++++++++++++++++++++++---------------------- 1 file changed, 84 insertions(+), 83 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 30f0fbd..764516e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,97 +14,98 @@ services: placement: constraints: - 'node.role == manager' -# app: -# image: swarmpit/swarmpit:latest -# ports: -# - "888:8080" -# environment: -# - SWARMPIT_DB=http://db:5984 -# - SWARMPIT_INFLUXDB=http://influxdb:8086 -# - TZ=Asia/Shanghai -# volumes: -# - /var/run/docker.sock:/var/run/docker.sock:ro -# networks: -# - net -# deploy: -# resources: -# limits: -# cpus: '0.50' -# memory: 1024M -# reservations: -# cpus: '0.25' -# memory: 512M -# placement: -# constraints: -# - node.role == manager -# db: -# image: couchdb:2.3.1 -# volumes: -# - db-data:/opt/couchdb/data -# networks: -# - net -# deploy: -# resources: -# limits: -# cpus: '0.30' -# memory: 512M -# reservations: -# cpus: '0.15' -# memory: 256M -# placement: -# constraints: -# - node.labels.swarmpit.db-data == true -# influxdb: -# image: influxdb:1.7 -# volumes: -# - influx-data:/var/lib/influxdb -# networks: -# - net -# deploy: -# resources: -# reservations: -# cpus: '0.3' -# memory: 128M -# limits: -# cpus: '0.6' -# memory: 512M -# placement: -# constraints: -# - node.labels.swarmpit.influx-data == true -# agent: -# image: swarmpit/agent:latest -# environment: -# - DOCKER_API_VERSION=1.35 -# volumes: -# - /var/run/docker.sock:/var/run/docker.sock:ro -# networks: -# - net -# deploy: -# mode: global -# resources: -# limits: -# cpus: '0.10' -# memory: 64M -# reservations: -# cpus: '0.05' -# memory: 32M + networks: + - diyue-network + app: + image: swarmpit/swarmpit:latest + ports: + - "888:8080" + environment: + - SWARMPIT_DB=http://db:5984 + - SWARMPIT_INFLUXDB=http://influxdb:8086 + - TZ=Asia/Shanghai + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + networks: + - diyue-network + deploy: + resources: + limits: + cpus: '0.50' + memory: 1024M + reservations: + cpus: '0.05' + memory: 200M + placement: + constraints: + - node.role == manager + db: + image: couchdb:2.3.1 + volumes: + - db-data:/opt/couchdb/data + networks: + - diyue-network + deploy: + resources: + limits: + cpus: '0.30' + memory: 512M + reservations: + cpus: '0.10' + memory: 256M + placement: + constraints: + - node.labels.swarmpit.db-data == true + influxdb: + image: influxdb:1.7 + volumes: + - influx-data:/var/lib/influxdb + networks: + - diyue-network + deploy: + resources: + reservations: + cpus: '0.1' + memory: 128M + limits: + cpus: '0.6' + memory: 512M + placement: + constraints: + - node.labels.swarmpit.influx-data == true + agent: + image: swarmpit/agent:latest + environment: + - DOCKER_API_VERSION=1.35 + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + networks: + - diyue-network + deploy: + mode: global + resources: + limits: + cpus: '0.10' + memory: 64M + reservations: + cpus: '0.05' + memory: 32M # networks: # net: # driver: overlay # attachable: true -# volumes: -# db-data: -# driver: local -# influx-data: -# driver: local - - - - +volumes: + db-data: + driver: local + influx-data: + driver: local +networks: + diyue-network: + driver: overlay