feat: add openim fix env

Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
Xinwei Xiong(cubxxw) 2023-12-11 22:15:51 +08:00
parent b7482f7c6e
commit 8f58b95a10
2 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ services:
image: 'bitnami/kafka:${KAFKA_IMAGE_VERSION:-3.5.1}' image: 'bitnami/kafka:${KAFKA_IMAGE_VERSION:-3.5.1}'
container_name: kafka container_name: kafka
restart: always restart: always
user: ${KAFKA_USER:-root}
ports: ports:
- "${KAFKA_PORT:-19094}:9094" - "${KAFKA_PORT:-19094}:9094"
volumes: volumes:

View File

@ -168,7 +168,7 @@ while [[ $# -gt 0 ]]; do
done done
# Generate configuration files if requested # Generate configuration files if requested
if [[ "${FORCE_OVERWRITE}" == true ]]; then if [[ "${FORCE_OVERWRITE}" == true || "${SKIP_EXISTING}" == false ]]; then
generate_config_files generate_config_files
fi fi