diff --git a/README.md b/README.md index 3ce8fe030..0452fbc06 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,8 @@ $ make demo 🤲 In order to facilitate the user experience, we have provided a variety of deployment solutions, you can choose your own deployment method according to the list below: +> [ !TIP ] Due to some issues with the release-v3.3 deployment, linux deployment requires the root user to deploy the entire deployment +
Deploying with Docker Compose It is recommended to use Docker Compose for deployment, which can easily and quickly deploy the entire OpenIM service on a single node diff --git a/docker-compose.yml b/docker-compose.yml index 05806427d..418963746 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: - "${DATA_DIR}/components/mongodb/data/db:/data/db" - "${DATA_DIR}/components/mongodb/data/logs:/data/logs" - "${DATA_DIR}/components/mongodb/data/conf:/etc/mongo" - - ./scripts/mongo-init.sh:/docker-entrypoint-initdb.d/mongo-init.sh:ro" + - ./scripts/mongo-init.sh:/docker-entrypoint-initdb.d/mongo-init.sh" environment: - TZ=Asia/Shanghai - wiredTigerCacheSizeGB=1 @@ -127,9 +127,9 @@ services: ipv4_address: ${MINIO_NETWORK_ADDRESS} openim-web: - image: ghcr.io/openimsdk/openim-web:latest - # image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web:latest - # image: openim/openim-web:latest + image: ghcr.io/openimsdk/openim-web:v3.5.0-docker + # image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web:v3.5.0-docker + # image: openim/openim-web:v3.5.0-docker container_name: openim-web environment: - OPENIM_WEB_DIST_PATH=${OPENIM_WEB_DIST_PATH} diff --git a/scripts/make-rules/golang.mk b/scripts/make-rules/golang.mk index 0614bdf6f..f64f385f8 100644 --- a/scripts/make-rules/golang.mk +++ b/scripts/make-rules/golang.mk @@ -17,7 +17,7 @@ # GO := go -GO_SUPPORTED_VERSIONS ?= 1.18|1.19|1.20|1.21 +GO_SUPPORTED_VERSIONS ?= 1.18|1.19|1.20|1.21|1.22 GO_LDFLAGS += -X $(VERSION_PACKAGE).gitVersion=$(GIT_TAG) \ -X $(VERSION_PACKAGE).gitCommit=$(GIT_COMMIT) \