mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
feat: add openim docker compose deployment github comment (#1769)
* feat: add openim v3.4 and v3.5 changelog Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim github comment Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: fix openim docker compose images version form github comment Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: fix openim docker compose images version form github comment Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
98d3646167
commit
64d6b04320
@ -176,18 +176,10 @@ GRAFANA_PORT=13000
|
|||||||
# ============ OpenIM Web ===============
|
# ============ OpenIM Web ===============
|
||||||
# ======================================
|
# ======================================
|
||||||
|
|
||||||
# Path to the OpenIM web distribution.
|
|
||||||
# Default: OPENIM_WEB_DIST_PATH=/app/dist
|
|
||||||
OPENIM_WEB_DIST_PATH=/app/dist
|
|
||||||
|
|
||||||
# Port on which OpenIM web service is running.
|
# Port on which OpenIM web service is running.
|
||||||
# Default: OPENIM_WEB_PORT=11001
|
# Default: OPENIM_WEB_PORT=11001
|
||||||
OPENIM_WEB_PORT=11001
|
OPENIM_WEB_PORT=11001
|
||||||
|
|
||||||
# Address or hostname for the OpenIM web service.
|
|
||||||
# Default: OPENIM_WEB_ADDRESS=172.28.0.1
|
|
||||||
OPENIM_WEB_ADDRESS=172.28.0.7
|
|
||||||
|
|
||||||
# ======================================
|
# ======================================
|
||||||
# ========= OpenIM Server ==============
|
# ========= OpenIM Server ==============
|
||||||
# ======================================
|
# ======================================
|
||||||
|
@ -171,10 +171,6 @@ GRAFANA_PORT=${GRAFANA_PORT}
|
|||||||
# ============ OpenIM Web ===============
|
# ============ OpenIM Web ===============
|
||||||
# ======================================
|
# ======================================
|
||||||
|
|
||||||
# Path to the OpenIM web distribution.
|
|
||||||
# Default: OPENIM_WEB_DIST_PATH=/app/dist
|
|
||||||
OPENIM_WEB_DIST_PATH=${OPENIM_WEB_DIST_PATH}
|
|
||||||
|
|
||||||
# Port on which OpenIM web service is running.
|
# Port on which OpenIM web service is running.
|
||||||
# Default: OPENIM_WEB_PORT=11001
|
# Default: OPENIM_WEB_PORT=11001
|
||||||
OPENIM_WEB_PORT=${OPENIM_WEB_PORT}
|
OPENIM_WEB_PORT=${OPENIM_WEB_PORT}
|
||||||
|
@ -114,9 +114,6 @@ services:
|
|||||||
openim-web:
|
openim-web:
|
||||||
image: ${IMAGE_REGISTRY:-ghcr.io/openimsdk}/openim-web:${OPENIM_WEB_IMAGE_VERSION:-v3.5.0-docker}
|
image: ${IMAGE_REGISTRY:-ghcr.io/openimsdk}/openim-web:${OPENIM_WEB_IMAGE_VERSION:-v3.5.0-docker}
|
||||||
container_name: openim-web
|
container_name: openim-web
|
||||||
environment:
|
|
||||||
- OPENIM_WEB_DIST_PATH=${OPENIM_WEB_DIST_PATH:-/app/dist}
|
|
||||||
- OPENIM_WEB_PORT=${OPENIM_WEB_PORT:-11001}
|
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "${OPENIM_WEB_PORT:-11001}:80"
|
- "${OPENIM_WEB_PORT:-11001}:80"
|
||||||
@ -201,9 +198,6 @@ services:
|
|||||||
# - "${DATA_DIR:-./}/components/openim-chat/config:/openim/openim-chat/config"
|
# - "${DATA_DIR:-./}/components/openim-chat/config:/openim/openim-chat/config"
|
||||||
# restart: always
|
# restart: always
|
||||||
# # user: root:root
|
# # user: root:root
|
||||||
# depends_on:
|
|
||||||
# openim-server:
|
|
||||||
# condition: service_healthy
|
|
||||||
# logging:
|
# logging:
|
||||||
# driver: json-file
|
# driver: json-file
|
||||||
# options:
|
# options:
|
||||||
@ -215,8 +209,8 @@ services:
|
|||||||
|
|
||||||
# openim-admin:
|
# openim-admin:
|
||||||
# # https://github.com/openimsdk/open-im-server/issues/1662
|
# # https://github.com/openimsdk/open-im-server/issues/1662
|
||||||
# image: ${IMAGE_REGISTRY:-ghcr.io/openimsdk}/openim-admin:${ADMIN_FRONT_VERSION:-toc-base-open-docker.35}
|
# image: ${IMAGE_REGISTRY:-ghcr.io/openimsdk}/openim-admin:${ADMIN_FRONT_VERSION:-toc-base-open-docker.35}
|
||||||
# container_name: openim-admin
|
# container_name: openim-admin
|
||||||
# restart: always
|
# restart: always
|
||||||
# ports:
|
# ports:
|
||||||
# - "${OPENIM_ADMIN_FRONT_PORT:-11002}:80"
|
# - "${OPENIM_ADMIN_FRONT_PORT:-11002}:80"
|
||||||
|
@ -243,8 +243,6 @@ def "KAFKA_CONSUMERGROUPID_PUSH" "push" # `Kafka` 的消费
|
|||||||
|
|
||||||
###################### openim-web 配置信息 ######################
|
###################### openim-web 配置信息 ######################
|
||||||
def "OPENIM_WEB_PORT" "11001" # openim-web的端口
|
def "OPENIM_WEB_PORT" "11001" # openim-web的端口
|
||||||
def "OPENIM_WEB_ADDRESS" "${DOCKER_BRIDGE_GATEWAY}" # openim-web的地址
|
|
||||||
def "OPENIM_WEB_DIST_PATH" "/app/dist" # openim-web的dist路径
|
|
||||||
|
|
||||||
###################### openim-admin-front 配置信息 ######################
|
###################### openim-admin-front 配置信息 ######################
|
||||||
def "OPENIM_ADMIN_FRONT_PORT" "11002" # openim-admin-front的端口
|
def "OPENIM_ADMIN_FRONT_PORT" "11002" # openim-admin-front的端口
|
||||||
|
@ -37,7 +37,6 @@ Variables can be set as above, Environment variables can also be set
|
|||||||
example:
|
example:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ export OPENIM_WEB_DIST_PATH="/app/dist"
|
|
||||||
$ export OPENIM_WEB_PPRT="11001"
|
$ export OPENIM_WEB_PPRT="11001"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user