mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-04 03:12:19 +08:00
update set pin friends
This commit is contained in:
parent
da2e7c27e0
commit
93330125c9
@ -11,6 +11,21 @@ networks:
|
|||||||
gateway: '${DOCKER_BRIDGE_GATEWAY}'
|
gateway: '${DOCKER_BRIDGE_GATEWAY}'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
mysql:
|
||||||
|
image: mysql:5.7
|
||||||
|
ports:
|
||||||
|
- "${MYSQL_PORT}:3306"
|
||||||
|
container_name: mysql
|
||||||
|
volumes:
|
||||||
|
- "${DATA_DIR}/components/mysql/data:/var/lib/mysql"
|
||||||
|
- "/etc/localtime:/etc/localtime"
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: "${MYSQL_PASSWORD}"
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
server:
|
||||||
|
ipv4_address: ${MYSQL_NETWORK_ADDRESS}
|
||||||
|
|
||||||
mongodb:
|
mongodb:
|
||||||
image: mongo:6.0.2
|
image: mongo:6.0.2
|
||||||
ports:
|
ports:
|
||||||
@ -127,68 +142,68 @@ services:
|
|||||||
server:
|
server:
|
||||||
ipv4_address: ${OPENIM_WEB_NETWORK_ADDRESS}
|
ipv4_address: ${OPENIM_WEB_NETWORK_ADDRESS}
|
||||||
|
|
||||||
# openim-admin:
|
openim-admin:
|
||||||
# image: ${IMAGE_REGISTRY}/openim-admin-front:v3.4.0
|
image: ${IMAGE_REGISTRY}/openim-admin-front:v3.4.0
|
||||||
# # image: ghcr.io/openimsdk/openim-admin-front:v3.4.0
|
# image: ghcr.io/openimsdk/openim-admin-front:v3.4.0
|
||||||
# # image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-admin-front:v3.4.0
|
# image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-admin-front:v3.4.0
|
||||||
# # image: openim/openim-admin-front:v3.4.0
|
# image: openim/openim-admin-front:v3.4.0
|
||||||
# container_name: openim-admin
|
container_name: openim-admin
|
||||||
# restart: always
|
restart: always
|
||||||
# ports:
|
ports:
|
||||||
# - "${OPENIM_ADMIN_FRONT_PORT}:80"
|
- "${OPENIM_ADMIN_FRONT_PORT}:80"
|
||||||
# networks:
|
networks:
|
||||||
# server:
|
server:
|
||||||
# ipv4_address: ${OPENIM_ADMIN_FRONT_NETWORK_ADDRESS}
|
ipv4_address: ${OPENIM_ADMIN_FRONT_NETWORK_ADDRESS}
|
||||||
|
|
||||||
# prometheus:
|
prometheus:
|
||||||
# image: prom/prometheus
|
image: prom/prometheus
|
||||||
# container_name: prometheus
|
container_name: prometheus
|
||||||
# hostname: prometheus
|
hostname: prometheus
|
||||||
# restart: always
|
restart: always
|
||||||
# volumes:
|
volumes:
|
||||||
# - ./config/prometheus.yml:/etc/prometheus/prometheus.yml
|
- ./config/prometheus.yml:/etc/prometheus/prometheus.yml
|
||||||
# - ./config/instance-down-rules.yml:/etc/prometheus/instance-down-rules.yml
|
- ./config/instance-down-rules.yml:/etc/prometheus/instance-down-rules.yml
|
||||||
# ports:
|
ports:
|
||||||
# - "${PROMETHEUS_PORT}:9090"
|
- "${PROMETHEUS_PORT}:9090"
|
||||||
# networks:
|
networks:
|
||||||
# server:
|
server:
|
||||||
# ipv4_address: ${PROMETHEUS_NETWORK_ADDRESS}
|
ipv4_address: ${PROMETHEUS_NETWORK_ADDRESS}
|
||||||
|
|
||||||
# alertmanager:
|
alertmanager:
|
||||||
# image: prom/alertmanager
|
image: prom/alertmanager
|
||||||
# container_name: alertmanager
|
container_name: alertmanager
|
||||||
# hostname: alertmanager
|
hostname: alertmanager
|
||||||
# restart: always
|
restart: always
|
||||||
# volumes:
|
volumes:
|
||||||
# - ./config/alertmanager.yml:/etc/alertmanager/alertmanager.yml
|
- ./config/alertmanager.yml:/etc/alertmanager/alertmanager.yml
|
||||||
# - ./config/email.tmpl:/etc/alertmanager/email.tmpl
|
- ./config/email.tmpl:/etc/alertmanager/email.tmpl
|
||||||
# ports:
|
ports:
|
||||||
# - "${ALERT_MANAGER_PORT}:9093"
|
- "${ALERT_MANAGER_PORT}:9093"
|
||||||
# networks:
|
networks:
|
||||||
# server:
|
server:
|
||||||
# ipv4_address: ${ALERT_MANAGER_NETWORK_ADDRESS}
|
ipv4_address: ${ALERT_MANAGER_NETWORK_ADDRESS}
|
||||||
|
|
||||||
# grafana:
|
grafana:
|
||||||
# image: grafana/grafana
|
image: grafana/grafana
|
||||||
# container_name: grafana
|
container_name: grafana
|
||||||
# hostname: grafana
|
hostname: grafana
|
||||||
# user: root
|
user: root
|
||||||
# restart: always
|
restart: always
|
||||||
# ports:
|
ports:
|
||||||
# - "${GRAFANA_PORT}:3000"
|
- "${GRAFANA_PORT}:3000"
|
||||||
# volumes:
|
volumes:
|
||||||
# - ${DATA_DIR}/components/grafana:/var/lib/grafana
|
- ${DATA_DIR}/components/grafana:/var/lib/grafana
|
||||||
# networks:
|
networks:
|
||||||
# server:
|
server:
|
||||||
# ipv4_address: ${GRAFANA_NETWORK_ADDRESS}
|
ipv4_address: ${GRAFANA_NETWORK_ADDRESS}
|
||||||
|
|
||||||
# node-exporter:
|
node-exporter:
|
||||||
# image: quay.io/prometheus/node-exporter
|
image: quay.io/prometheus/node-exporter
|
||||||
# container_name: node-exporter
|
container_name: node-exporter
|
||||||
# hostname: node-exporter
|
hostname: node-exporter
|
||||||
# restart: always
|
restart: always
|
||||||
# ports:
|
ports:
|
||||||
# - "${NODE_EXPORTER_PORT}:9100"
|
- "${NODE_EXPORTER_PORT}:9100"
|
||||||
# networks:
|
networks:
|
||||||
# server:
|
server:
|
||||||
# ipv4_address: ${NODE_EXPORTER_NETWORK_ADDRESS}
|
ipv4_address: ${NODE_EXPORTER_NETWORK_ADDRESS}
|
||||||
Loading…
x
Reference in New Issue
Block a user