Skip to content

Commit b1bd1df

Browse files
committed
fix: scripts path
Signed-off-by: Xinwei Xiong(cubxxw-openim) <[email protected]>
1 parent e9a6570 commit b1bd1df

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

config/config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ api:
126126
# Configuration for Aliyun OSS
127127
object:
128128
enable: "minio"
129-
apiURL: http://116.30.3.14:10002/object/
129+
apiURL: http://127.0.0.1:10002/object/
130130
minio:
131131
bucket: "openim"
132-
endpoint: http://116.30.3.14:10005
132+
endpoint: http://127.0.0.1:10005
133133
accessKeyID: root
134134
secretAccessKey: openIM123
135135
sessionToken: ""

docker-compose.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ services:
104104
container_name: openim-server
105105
volumes:
106106
- ./logs:/openim/openim-server/logs
107-
- ./config/config.yaml:/openim/openim-server/config/config.yaml
108-
- ./config/notification.yaml:/openim/openim-server/config/notification.yaml
107+
- ./config:/openim/openim-server/config
109108
- ./scripts:/openim/openim-server/scripts
110109
restart: always
111110
depends_on:
@@ -125,6 +124,10 @@ services:
125124
openim_chat:
126125
image: ghcr.io/openimsdk/openim-chat:latest
127126
container_name: openim_chat
127+
volumes:
128+
- ./_output/openim/openim-chat/logs:/openim/openim-chat/logs
129+
- ./_output/openim/openim-chat/config:/openim/openim-chat/config
130+
- ./_output/openim/openim-chat/scripts:/openim/openim-chat/scripts
128131
restart: always
129132
depends_on:
130133
- mysql

0 commit comments

Comments
 (0)