mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
feat: Provides a new reading scheme for profile privacy through environment variables (#1520)
* fix: fix openim make install Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim make init Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: remove docker compose mysql Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
c0194f6ef4
commit
119e8dbb2f
3
.gitignore
vendored
3
.gitignore
vendored
@ -391,4 +391,5 @@ Sessionx.vim
|
|||||||
dist/
|
dist/
|
||||||
.env
|
.env
|
||||||
config/config.yaml
|
config/config.yaml
|
||||||
config/alertmanager.yml
|
config/alertmanager.yml
|
||||||
|
config/prometheus.yml
|
@ -11,22 +11,6 @@ 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:
|
|
||||||
# open-im-server_server
|
|
||||||
ipv4_address: ${MYSQL_NETWORK_ADDRESS}
|
|
||||||
|
|
||||||
mongodb:
|
mongodb:
|
||||||
image: mongo:6.0.2
|
image: mongo:6.0.2
|
||||||
ports:
|
ports:
|
||||||
|
@ -39,13 +39,18 @@ openim::log::info "Read more configuration information: https://github.com/openi
|
|||||||
|
|
||||||
for template in "${!TEMPLATES[@]}"; do
|
for template in "${!TEMPLATES[@]}"; do
|
||||||
if [[ ! -f "${template}" ]]; then
|
if [[ ! -f "${template}" ]]; then
|
||||||
openim::log::error_exit "template file ${template} does not exist..."
|
openim::log::error_exit "Template file ${template} does not exist..."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for template in "${!TEMPLATES[@]}"; do
|
||||||
IFS=';' read -ra OUTPUT_FILES <<< "${TEMPLATES[$template]}"
|
IFS=';' read -ra OUTPUT_FILES <<< "${TEMPLATES[$template]}"
|
||||||
for output_file in "${OUTPUT_FILES[@]}"; do
|
for output_file in "${OUTPUT_FILES[@]}"; do
|
||||||
if [[ -f "${output_file}" ]]; then
|
if [[ -f "${output_file}" ]]; then
|
||||||
read -p "File ${output_file} already exists. Overwrite? (Y/N): "
|
echo -n "File ${output_file} already exists. Overwrite? (Y/N): "
|
||||||
|
read -r -n 1 REPLY
|
||||||
|
echo # Adds a line to wrap after user input
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||||
openim::log::info "Overwriting ${output_file}. Previous configuration will be lost."
|
openim::log::info "Overwriting ${output_file}. Previous configuration will be lost."
|
||||||
else
|
else
|
||||||
@ -55,6 +60,10 @@ for template in "${!TEMPLATES[@]}"; do
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
openim::log::info "⌚ Working with template file: ${template} to ${output_file}..."
|
openim::log::info "⌚ Working with template file: ${template} to ${output_file}..."
|
||||||
|
if [[ ! -f "${OPENIM_ROOT}/scripts/genconfig.sh" ]]; then
|
||||||
|
openim::log::error "genconfig.sh script not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
"${OPENIM_ROOT}/scripts/genconfig.sh" "${ENV_FILE}" "${template}" > "${output_file}" || {
|
"${OPENIM_ROOT}/scripts/genconfig.sh" "${ENV_FILE}" "${template}" > "${output_file}" || {
|
||||||
openim::log::error "Error processing template file ${template}"
|
openim::log::error "Error processing template file ${template}"
|
||||||
exit 1
|
exit 1
|
||||||
@ -63,4 +72,5 @@ for template in "${!TEMPLATES[@]}"; do
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
openim::log::success "✨ All configuration files have been successfully generated!"
|
openim::log::success "✨ All configuration files have been successfully generated!"
|
||||||
|
@ -42,11 +42,11 @@ fi
|
|||||||
|
|
||||||
pushd "${OPENIM_ROOT}"
|
pushd "${OPENIM_ROOT}"
|
||||||
${DOCKER_COMPOSE_COMMAND} stop
|
${DOCKER_COMPOSE_COMMAND} stop
|
||||||
curl https://gitee.com/openimsdk/openim-docker/raw/main/example/full-openim-server-and-chat.yml -o docker-compose.yml && make init && docker compose up -d
|
curl https://gitee.com/openimsdk/openim-docker/raw/main/example/full-openim-server-and-chat.yml -o docker-compose.yml
|
||||||
"${OPENIM_ROOT}"/scripts/init-config.sh
|
"${OPENIM_ROOT}"/scripts/init-config.sh
|
||||||
${DOCKER_COMPOSE_COMMAND} up --remove-orphans -d
|
${DOCKER_COMPOSE_COMMAND} up --remove-orphans -d
|
||||||
sleep 60
|
sleep 60
|
||||||
${DOCKER_COMPOSE_COMMAND} logs openim-server
|
${DOCKER_COMPOSE_COMMAND} logs openim-server
|
||||||
${DOCKER_COMPOSE_COMMAND} ps
|
${DOCKER_COMPOSE_COMMAND} ps
|
||||||
|
|
||||||
popd
|
popd
|
Loading…
x
Reference in New Issue
Block a user